update keybinds to fix conflict

This commit is contained in:
speedie 2022-11-03 15:27:12 +01:00
parent c105593d69
commit ca37538fd0
2 changed files with 5 additions and 4 deletions

View file

@ -115,8 +115,6 @@
- Super+r & s - Run screenkey if it is installed
- Super+r & d - Kill screenkey
- Super+w & r - Randomize wallpaper
- Super+w & p - Set wallpaper to the previous
- Super+t & r - Reorganize tags and move windows
- Super+t & t - Toggle tag area in the bar
- Super+t & y - Toggle empty tag area in the bar
@ -152,6 +150,8 @@
- Super+Shift+g & o - Decrease outer gaps by 1
- Super+Shift+e & a - Open the virtual keyboard
- Super+Shift+e & e - Open a list of all emojis and copy the selection
- Super+Shift+e & r - Randomize wallpaper
- Super+Shift+e & p - Set wallpaper to the previous
- Super+Shift+k & o - Kill every window except the focused
-- Extras --

View file

@ -207,9 +207,10 @@ static Key keys[] = {
{ MODIFIER1, XK_l, XK_p, togglelayoutpos, {0} },
{ MODIFIER1, XK_w, XK_r, spawn, cmd( "speedwm-swal --randomize" ) },
{ MODIFIER1, XK_w, XK_p, spawn, cmd( "speedwm-swal --previous" ) },
{ MODIFIER1|SHIFT, XK_k, XK_o, killunsel, {0} },
{ MODIFIER1|SHIFT, XK_e, XK_p, spawn, cmd( "speedwm-swal --previous" ) },
{ MODIFIER1|SHIFT, XK_e, XK_r, spawn, cmd( "speedwm-swal --randomize" ) },
{ MODIFIER1|SHIFT, XK_e, XK_a, spawn, cmd( "speedwm-virtualkeyboard" ) },
{ MODIFIER1|SHIFT, XK_e, XK_e, spawn, cmd( "speedwm-virtualkeyboard -e" ) },