diff --git a/configs/remmina/hosts/group_rdp_pi-tnc_10-80-55-8.remmina b/configs/remmina/hosts/group_rdp_pi-tnc_10-80-55-8.remmina new file mode 100644 index 0000000..adfdb69 --- /dev/null +++ b/configs/remmina/hosts/group_rdp_pi-tnc_10-80-55-8.remmina @@ -0,0 +1,102 @@ +[remmina] +password=. +gateway_username= +notes_text= +vc= +preferipv6=0 +ssh_tunnel_loopback=0 +serialname= +tls-seclevel= +sound=off +disableserverbell=0 +printer_overrides= +name=PI TNC +console=0 +colordepth=32 +security= +precommand= +disable_fastpath=0 +tightencoding=0 +left-handed=0 +multitransport=0 +postcommand= +group= +server=10.80.55.8 +viewonly=0 +ssh_tunnel_certfile= +glyph-cache=0 +ssh_tunnel_enabled=0 +disableclipboard=0 +parallelpath= +audio-output= +monitorids= +cert_ignore=0 +gateway_server= +serialpermissive=0 +ssh_tunnel_password= +old-license=0 +protocol=RDP +resolution_mode=2 +pth= +loadbalanceinfo= +disableautoreconnect=0 +clientname= +clientbuild= +disablesmoothscrolling=0 +resolution_width=0 +drive= +username=ewpratten +relax-order-checks=0 +base-cred-for-gw=0 +profile-lock=0 +showcursor=0 +network=none +gateway_domain= +serialdriver= +rdp2tcp= +gateway_password= +rdp_reconnect_attempts= +restricted-admin=0 +multimon=0 +domain= +disableserverinput=0 +exec= +enable-autostart=0 +smartcardname= +serialpath= +ssh_tunnel_passphrase= +viewmode=1 +proxy= +quality=2 +usb= +shareprinter=0 +disablepasswordstoring=0 +span=0 +parallelname= +shareparallel=0 +disableencryption=0 +ssh_tunnel_auth=0 +ssh_tunnel_username= +execpath= +keymap= +resolution_height=0 +shareserial=0 +useproxyenv=0 +sharesmartcard=0 +freerdp_log_filters= +microphone= +timeout= +ssh_tunnel_privatekey= +window_maximize=1 +encodings= +ignore-tls-errors=1 +ssh_tunnel_server= +dvc= +gateway_usage=0 +gwtransp=http +websockets=0 +freerdp_log_level=INFO +disable-smooth-scrolling=0 +window_height=480 +window_width=640 +scale=2 diff --git a/configs/zsh/macros.sh b/configs/zsh/macros.sh index dae2241..22ad3e6 100644 --- a/configs/zsh/macros.sh +++ b/configs/zsh/macros.sh @@ -8,6 +8,11 @@ alias p4='ping 8.8.8.8 -c 4' alias quickhttp='sudo python -m SimpleHTTPServer 443' alias zshreload="source ~/.zshrc" +# Kill via pgrep +nkill() { + kill -9 $(pgrep $1) +} + # Makes a directory, then moves into it mkcd() { if [ $# != 1 ]; then @@ -37,4 +42,4 @@ extract() { else echo "'$1' is not a valid file!" fi -} \ No newline at end of file +}