diff options
-rwxr-xr-x | bin/bin/keyboard | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/bin/keyboard b/bin/bin/keyboard index 5a96bcb..d00035b 100755 --- a/bin/bin/keyboard +++ b/bin/bin/keyboard @@ -8,11 +8,12 @@ xmodmap -e "add Control = Control_L" # Remap modifiers (Keyboard dependent) xmodmap -e "keycode 94 = Mode_switch" -# xmodmap -e 'keycode 108 = Super_L' # Remap modifiers (Keyboard independent) xmodmap -e 'keysym space = Super_L' xmodmap -e 'keycode any = space' +xmodmap -e "keysym Tab = Alt_L" +xmodmap -e 'keycode any = Tab' # Numbers xmodmap -e "keysym d = d D 0" @@ -34,3 +35,4 @@ killall -9 xcape xcape -e 'Control_L=Escape' xcape -e 'Super_L=space' +xcape -e 'Alt_L=Tab' |