From 4f259481f4ed2408e745a344ad359b6b6aed6083 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 7 Jun 2020 16:06:25 -0500 Subject: [PATCH 1/2] - Added back vscode keybindings json file --- xkeysnail-config/vscode_keybindings.json | 31 ++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 xkeysnail-config/vscode_keybindings.json diff --git a/xkeysnail-config/vscode_keybindings.json b/xkeysnail-config/vscode_keybindings.json new file mode 100644 index 0000000..750f5ac --- /dev/null +++ b/xkeysnail-config/vscode_keybindings.json @@ -0,0 +1,31 @@ +// Place your key bindings in this file to override the defaultsauto[] +[ + { + "key": "alt+left", + "command": "-workbench.action.terminal.focusPreviousPane", + "when": "terminalFocus" + }, + { + "key": "alt+right", + "command": "-workbench.action.terminal.focusNextPane", + "when": "terminalFocus" + }, + { + "key": "alt+right", + "command": "cursorWordRight" + }, + { + "key": "alt+left", + "command": "cursorWordLeft" + }, + { + "key": "shift+alt+left", + "command": "cursorWordStartLeftSelect", + "when": "textInputFocus" + }, + { + "key": "shift+alt+right", + "command": "cursorWordEndRightSelect", + "when": "textInputFocus" + } +] \ No newline at end of file From 87a4c6934d04a2490ba6fa615d688ffbc550bff4 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sat, 13 Jun 2020 01:36:36 -0500 Subject: [PATCH 2/2] - Updated Budgie patch to use the proper fork for Ubuntu Budgie 20.04 --- xkeysnail_service.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xkeysnail_service.sh b/xkeysnail_service.sh index 2e34a09..5848462 100755 --- a/xkeysnail_service.sh +++ b/xkeysnail_service.sh @@ -101,7 +101,7 @@ function budgieUpdate { budgieVersion="$(/usr/bin/budgie-desktop --version | awk '{ print $2; }' | head -n1)" if [ "$budgieVersion" == "10.5.1" ]; then if ! [ -f ./system-config/budgie-daemon_10.5.1 ]; then - wget https://github.com/rbreaves/budgie-desktop/raw/43d3b44243b0bcaee3262a79818024a651475b58/binaries/budgie-daemon_10.5.1 -O ./system-config/budgie-daemon_10.5.1 + wget https://github.com/rbreaves/budgie-desktop/raw/f112e0e349c021c1bbfa7e45c16083eae0d92fac/binaries/budgie-daemon_10.5.1 -O ./system-config/budgie-daemon_10.5.1 fi bdmd5=$(md5sum /usr/bin/budgie-daemon | awk '{ print $1 }') newbdmd5=$(md5sum ./system-config/budgie-daemon_10.5.1 | awk '{ print $1 }')