diff options
author | Bryson Steck <brysonsteck@protonmail.com> | 2022-11-20 18:41:32 -0700 |
---|---|---|
committer | Bryson Steck <brysonsteck@protonmail.com> | 2022-11-20 18:41:32 -0700 |
commit | abd282ead4b1f0b3cdd5cc7faf231f0ca6181fb6 (patch) | |
tree | de47857382b5e7329668deca94ade15ef8067fd9 /x | |
parent | 1fad9afb72b2d729bb5328dfd6711c0a8dc4e8d3 (diff) | |
download | dotfiles-abd282ead4b1f0b3cdd5cc7faf231f0ca6181fb6.tar dotfiles-abd282ead4b1f0b3cdd5cc7faf231f0ca6181fb6.tar.gz dotfiles-abd282ead4b1f0b3cdd5cc7faf231f0ca6181fb6.tar.bz2 |
add xmodmap, changed aliases and locations
Diffstat (limited to 'x')
-rw-r--r-- | x/.Xmodmap | 4 | ||||
-rw-r--r-- | x/.xinitrc | 8 |
2 files changed, 12 insertions, 0 deletions
diff --git a/x/.Xmodmap b/x/.Xmodmap new file mode 100644 index 0000000..2aeb810 --- /dev/null +++ b/x/.Xmodmap @@ -0,0 +1,4 @@ +clear Lock +remove Lock = Caps_Lock +keycode 66 = Escape +keycode 9 = Caps_Lock @@ -71,6 +71,14 @@ keepassxc ~/.passwords/Passwords.kdbx & #wallpapers.sh & feh --bg-fill git/wallpapers-exorcist/gruvbox/canyon.jpg git/wallpapers-exorcist/gruvbox/canyon.jpg & +# if unicomp keyboard detected, turn alt into super +if $(lsusb | grep -qi "Unicomp"); then + xmodmap -e "remove mod1 = Alt_L" + xmodmap -e "remove mod4 = Super_L" + xmodmap -e "remove mod1 = Super_L" + xmodmap -e "remove mod4 = Alt_L" +fi + # start dwm redshift & xset r rate 300 50 |