Fix key remaps
This commit is contained in:
parent
6dcc6899a2
commit
0f5c0a3953
|
@ -1,6 +1,2 @@
|
||||||
! Use win key as compose
|
remove control = Control_R
|
||||||
keycode 133 = Multi_key Multi_key
|
keysym Control_R = dead_greek
|
||||||
|
|
||||||
! Turn caps lock into escape
|
|
||||||
clear lock
|
|
||||||
keycode 66 = Escape Caps_Lock
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
xset s off -dpms
|
xset s off -dpms
|
||||||
xmodmap ~/.Xmodmap
|
customkeys
|
||||||
xdg-mime default mupdf.desktop application/pdf
|
xdg-mime default mupdf.desktop application/pdf
|
||||||
xdg-mime default feh.desktop image/png
|
xdg-mime default feh.desktop image/png
|
||||||
xdg-mime default feh.desktop image/jpg
|
xdg-mime default feh.desktop image/jpg
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Compose key: windows key
|
||||||
|
setxkbmap -option compose:lwin
|
||||||
|
|
||||||
|
# Caps turned into escape
|
||||||
|
setxkbmap -option caps:escape_shifted_capslock
|
||||||
|
|
||||||
|
# dead_greek as control right
|
||||||
|
xmodmap ~/.Xmodmap
|
Loading…
Reference in New Issue