summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUrbain Vaes <urbain@vaes.uk>2016-04-28 14:39:20 +0100
committerUrbain Vaes <urbain@vaes.uk>2016-04-28 14:39:20 +0100
commit77059baa5bbab3b12a077e33f17930f5a9112b1b (patch)
treec92e560b0403c9ee36bfbd2a3b2370391f06a41e
parentf956a83e92992e62d14df01c4332f882fa80b5de (diff)
Make <Tab> produce <Alt_L> keysym
-rwxr-xr-xbin/bin/keyboard4
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'