From 32d6f346dc523c21c9a5f927753e08f4baf0c25c Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 1 Aug 2022 09:34:27 -0400 Subject: [PATCH] delete key --- ...group_rdp_quick-connect_10-80-55-8.remmina | 92 +++++++++++++++++++ configs/zsh/by_host/ewpratten-laptop.sh | 13 ++- configs/zsh/keybinds.sh | 5 +- 3 files changed, 108 insertions(+), 2 deletions(-) create mode 100644 configs/remmina/hosts/group_rdp_quick-connect_10-80-55-8.remmina diff --git a/configs/remmina/hosts/group_rdp_quick-connect_10-80-55-8.remmina b/configs/remmina/hosts/group_rdp_quick-connect_10-80-55-8.remmina new file mode 100644 index 0000000..a51f3f5 --- /dev/null +++ b/configs/remmina/hosts/group_rdp_quick-connect_10-80-55-8.remmina @@ -0,0 +1,92 @@ +[remmina] +password=. +gateway_username= +notes_text= +vc= +preferipv6=0 +ssh_tunnel_loopback=0 +serialname= +sound=off +printer_overrides= +name=Quick Connect +console=0 +colordepth=99 +security= +precommand= +disable_fastpath=0 +left-handed=0 +postcommand= +multitransport=0 +group= +server=10.80.55.8 +ssh_tunnel_certfile= +glyph-cache=0 +ssh_tunnel_enabled=0 +disableclipboard=0 +audio-output= +parallelpath= +monitorids= +cert_ignore=0 +gateway_server= +serialpermissive=0 +protocol=RDP +old-license=0 +ssh_tunnel_password= +resolution_mode=2 +pth= +loadbalanceinfo= +disableautoreconnect=0 +clientname= +clientbuild= +resolution_width=0 +drive= +relax-order-checks=0 +username=pi +base-cred-for-gw=0 +gateway_domain= +network=none +rdp2tcp= +gateway_password= +serialdriver= +domain= +profile-lock=0 +rdp_reconnect_attempts= +restricted-admin=0 +multimon=0 +exec= +smartcardname= +serialpath= +enable-autostart=0 +usb= +shareprinter=0 +ssh_tunnel_passphrase= +shareparallel=0 +disablepasswordstoring=0 +quality=0 +span=0 +parallelname= +ssh_tunnel_auth=0 +keymap= +ssh_tunnel_username= +execpath= +shareserial=0 +resolution_height=0 +timeout= +useproxyenv=0 +sharesmartcard=0 +freerdp_log_filters= +microphone= +dvc= +ssh_tunnel_privatekey= +gwtransp=http +ssh_tunnel_server= +ignore-tls-errors=1 +disable-smooth-scrolling=0 +gateway_usage=0 +websockets=0 +freerdp_log_level=INFO +window_height=480 +window_maximize=1 +window_width=640 +scale=2 +viewmode=1 diff --git a/configs/zsh/by_host/ewpratten-laptop.sh b/configs/zsh/by_host/ewpratten-laptop.sh index 1ecab94..2d52610 100644 --- a/configs/zsh/by_host/ewpratten-laptop.sh +++ b/configs/zsh/by_host/ewpratten-laptop.sh @@ -1,5 +1,16 @@ #! /bin/bash +# Various custom-compiled libs live here +export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH + # SDKMAN! export SDKMAN_DIR="$HOME/.sdkman" -[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" \ No newline at end of file +[[ -s "$HOME/.sdkman/bin/sdkman-init.sh" ]] && source "$HOME/.sdkman/bin/sdkman-init.sh" + +# NVM +export NVM_DIR="$HOME/.nvm" +[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm +[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion + +# Flutter +export PATH="$PATH:$HOME/development/flutter/bin" diff --git a/configs/zsh/keybinds.sh b/configs/zsh/keybinds.sh index 2e8d184..9459345 100644 --- a/configs/zsh/keybinds.sh +++ b/configs/zsh/keybinds.sh @@ -20,4 +20,7 @@ bindkey "\e[3@" kill-line # Home and end bindkey "^[[H" beginning-of-line -bindkey "^[[F" end-of-line \ No newline at end of file +bindkey "^[[F" end-of-line + +# Delete +bindkey "^[[3~" delete-char