Last active
August 29, 2015 13:56
-
-
Save piotrbelina/9226135 to your computer and use it in GitHub Desktop.
Linux Ubuntu Mac Keyboard
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
clear control | |
clear mod4 | |
clear mod1 | |
keycode 37 = Super_L | |
keycode 64 = Control_L | |
keycode 133 = Alt_L Meta_L | |
add mod1 = Alt_L Meta_L | |
add control = Control_L | |
add control = Control_R | |
add mod4 = Super_L |
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
λ ~ cat .xinitrc | |
#!/usr/bin/env bash | |
/usr/bin/xmodmap /home/bela/.Xmodmap | |
λ ~ cat .Xmodmap | |
clear control | |
clear mod1 | |
clear mod4 | |
keycode 37 = Super_L | |
keycode 133 = Alt_L Meta_L | |
keycode 64 = Control_L | |
add control = Control_L Control_R | |
add mod1 = Alt_L Meta_L | |
add mod4 = Super_L |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment