This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://www.linuxquestions.org/questions/linux-newbie-8/complicated-key-remap-multiple-keys-at-once-4175485671/ | |
# Also https://unix.stackexchange.com/questions/55076/what-is-the-mode-switch-modifier-for | |
# use `xev` to see what keys maps to (kind of verbose) | |
xset -r 133 | |
# Super_L mapped to switching mode | |
xmodmap -e "keycode 133 = Mode_switch" | |
xmodmap -e "keycode 30 = u U Page_Down Page_Down" | |
xmodmap -e "keycode 31 = i I Page_Up Page_Up" |
OlderNewer