update a few keybinds that broke

This commit is contained in:
speedie 2022-11-25 21:01:03 +01:00
parent 864e154084
commit d52c5c6470
3 changed files with 5 additions and 5 deletions

View file

@ -80,7 +80,7 @@ These keybinds are for navigating speedwm
- Super+Control+j/k - Move focus between hidden windows (Can then 'Show')
- Super+Control+Arrow - Moves a window to any corner of your screen (Arrow key)
- Super+Control+Tab - Open a dmenu prompt asking the user what layout to switch to
- Super+Control+h - Open a list of all keybinds in your terminal using less
- Super+Control+h - Open the man page for speedwm in dmenu.
- Super+Control+o - Show a hidden focused window
- Super+Control+a/d - Move to the next/previous tag
- Super+Control+Shift+o - Show all hidden windows

View file

@ -18,7 +18,7 @@
*
* It is recommended that you avoid using 'MODIFIER2' (Mod1Mask/ALT) by itself because it can break software defined shortcuts.
*
* If you need help, see speedwm-help.
* If you need help, see the man page for speedwm.
* Once you're done with your edits, run 'make clean install'.
*/
@ -65,7 +65,7 @@ static Key keys[] = {
{ MODIFIER1|SHIFT, -1, XK_u, spawn, cmd( TERMINAL "rssread" ) },
{ MODIFIER1|SHIFT, -1, XK_r, spawn, cmd( TERMINAL "neomutt" ) },
{ MODIFIER1|CONTROL, -1, XK_Tab, spawn, cmd( "speedwm-utils layout" ) },
{ MODIFIER1|CONTROL, -1, XK_h, spawn, cmd( TERMINAL "speedwm-help -2" ) },
{ MODIFIER1|CONTROL, -1, XK_h, spawn, cmd( "man speedwm | dmenu -l 40 -g 1" ) },
{ MODIFIER1|CONTROL, -1, XK_s, spawn, cmd( "speedwm-screenshotutil -f" ) },
{ MODIFIER1|CONTROL, -1, XK_m, spawn, cmd( "pkill cmus" ) },
{ MODIFIER1|CONTROL, -1, XK_q, spawn, cmd( "speedwm-audioctrl -mute" ) },
@ -78,7 +78,7 @@ static Key keys[] = {
{ MODIFIER1|CONTROL|SHIFT, -1, XK_s, spawn, cmd( "speedwm-swal" ) },
{ MODIFIER1|CONTROL|SHIFT, -1, XK_n, spawn, cmd( "speedwm-netctrl" ) },
{ MODIFIER1|CONTROL|SHIFT, -1, XK_b, spawn, cmd( "speedwm-btctrl" ) },
{ MODIFIER1|CONTROL|SHIFT, -1, XK_r, spawn, cmd( "speedwm_run -r" ) },
{ MODIFIER1|CONTROL|SHIFT, -1, XK_r, spawn, cmd( "libspeedwm --perform core_wm_reload" ) },
/* System tray */
#if USESYSTRAY

View file

@ -24,7 +24,7 @@
*
* -- Usage --
*
* To use speedwm, you must first install all the dependencies. See 'speedwm-help -a' for a list of dependencies.
* To use speedwm, you must first install all the dependencies. See the man page for speedwm for a list of dependencies.
* Then, you need to run 'speedwm_run' after X has started. This can usually be done by adding 'speedwm_run' to ~/.xinitrc and running 'startx'.
* If you use a display manger/login manager like sddm, lightdm or something that uses entries, the entry should be created after installation.
*