fix keybind conflict

This commit is contained in:
speedie 2022-11-30 18:18:22 +01:00
parent 57d53b65a6
commit b8c5ddb735
4 changed files with 12 additions and 5 deletions

View file

@ -200,6 +200,7 @@ Chained keybinds
- Super+, & d - Toggle tag powerline shape
- Super+, & s - Toggle tag and title powerline shapes
- Super+, & r - Reset powerline options
- Super+q & o - Kill every window except the focused
- Super+q & n/p - Switch to the next/previous track
- Super+q & l/h - Seek 3 seconds forward/backwards
- Super+q & u/d - Seek 10 seconds forward/backwards
@ -210,7 +211,6 @@ Chained keybinds
- 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
These will only work if your keyboard has special multimedia buttons.
@ -367,6 +367,8 @@ Below is a list of all .Xresources values you can define.
- speedwm.client.autofocus: 1
- speedwm.client.autoresize: 1
- speedwm.client.decorhints: 1
- speedwm.client.hide.border: 0
- speedwm.client.hide.singleborder: 1
- speedwm.client.fade.inactive: 1
- speedwm.client.fade.windows: 1
- speedwm.client.floatscratchpad: 0

View file

@ -150,6 +150,7 @@ Chained keybinds
- Super+, & d - Toggle tag powerline shape
- Super+, & s - Toggle tag and title powerline shapes
- Super+, & r - Reset powerline options
- Super+q & o - Kill every window except the focused
- Super+q & n/p - Switch to the next/previous track
- Super+q & l/h - Seek 3 seconds forward/backwards
- Super+q & u/d - Seek 10 seconds forward/backwards
@ -160,7 +161,6 @@ Chained keybinds
- 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
These will only work if your keyboard has special multimedia buttons.

View file

@ -220,8 +220,9 @@ static Key keys[] = {
{ MODIFIER1, XK_q, XK_d, spawn, cmd( "cmus-remote --seek -10" ) },
{ MODIFIER1, XK_q, XK_0, spawn, cmd( "cmus-remote --seek 0" ) },
/* Misc */
{ MODIFIER1, XK_q, XK_o, killunsel, {0} },
{ MODIFIER1, XK_l, XK_p, togglelayoutpos, {0} },
{ 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" ) },

View file

@ -408,6 +408,8 @@ Super+, & s - Toggle tag and title powerline shapes
.IP \[bu] 2
Super+, & r - Reset powerline options
.IP \[bu] 2
Super+q & o - Kill every window except the focused
.IP \[bu] 2
Super+q & n/p - Switch to the next/previous track
.IP \[bu] 2
Super+q & l/h - Seek 3 seconds forward/backwards
@ -427,8 +429,6 @@ Super+Shift+e & e - Open a list of all emojis and copy the selection
Super+Shift+e & r - Randomize wallpaper
.IP \[bu] 2
Super+Shift+e & p - Set wallpaper to the previous
.IP \[bu] 2
Super+Shift+k & o - Kill every window except the focused
.PP
These will only work if your keyboard has special multimedia buttons.
.IP \[bu] 2
@ -730,6 +730,10 @@ speedwm.client.autoresize: 1
.IP \[bu] 2
speedwm.client.decorhints: 1
.IP \[bu] 2
speedwm.client.hide.border: 0
.IP \[bu] 2
speedwm.client.hide.singleborder: 1
.IP \[bu] 2
speedwm.client.fade.inactive: 1
.IP \[bu] 2
speedwm.client.fade.windows: 1