speedwm-mkpage: Auto-pushed speedwm changes!

This commit is contained in:
speedie 2022-08-22 15:32:47 +02:00
parent 8aaf1035eb
commit 30162c65d5
3 changed files with 11 additions and 3 deletions

View file

@ -58,7 +58,6 @@ Below is a list of all speedwm keybinds.
- Super+Shift+f | Opens the defined file manager
- Super+Shift+w | Opens the defined web browser
- Super+Shift+o | Opens the bundled dfmpeg dmenu script to record your screen.
- Super+Shift+e | Opens the dboard dmenu script in dmenu which can copy text to your clipboard
- Super+Shift+t | Opens the defined editor in your terminal
- Super+Shift+p | Kills the defined web browser
- Super+Shift+m | Kills the defined music player
@ -147,6 +146,9 @@ Below is a list of all speedwm keybinds.
- Super+g & o | Increase outer gaps by 1
- Super+Shift+g & o | Decrease outer gaps by 1
- Super+r+v | Open the defined music visualizer
- 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+a | Open a list of copypasta and copy the selection
### Extras
@ -342,6 +344,8 @@ Note that the 'xrdb' dependency is required for both pywal and .Xresources suppo
- speedwm.i3nmaster: 0
- speedwm.scalepreview: 4
- speedwm.tagpreview: 1
- speedwm.tagpreviewpaddingv: 0
- speedwm.tagpreviewpaddingh: 0
- speedwm.mousepreview: 1
- speedwm.monocleclientcount: 0
- speedwm.monoclecount: 0

View file

@ -8,7 +8,6 @@
- Super+Shift+f | Opens the defined file manager
- Super+Shift+w | Opens the defined web browser
- Super+Shift+o | Opens the bundled dfmpeg dmenu script to record your screen.
- Super+Shift+e | Opens the dboard dmenu script in dmenu which can copy text to your clipboard
- Super+Shift+t | Opens the defined editor in your terminal
- Super+Shift+p | Kills the defined web browser
- Super+Shift+m | Kills the defined music player
@ -97,6 +96,9 @@
- Super+g & o | Increase outer gaps by 1
- Super+Shift+g & o | Decrease outer gaps by 1
- Super+r+v | Open the defined music visualizer
- 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+a | Open a list of copypasta and copy the selection
-- Extras --

View file

@ -28,7 +28,6 @@ static Key keys[] = {
{ MODKEY|ShiftMask, -1, XK_f, spawn, SHCMD(TERMINAL FILEMANAGER) },
{ MODKEY|ShiftMask, -1, XK_w, spawn, SHCMD(BROWSER) },
{ MODKEY|ShiftMask, -1, XK_o, spawn, SHCMD("speedwm-dfmpeg") },
{ MODKEY|ShiftMask, -1, XK_e, spawn, SHCMD("speedwm-virtualkeyboard") },
{ MODKEY|ShiftMask, -1, XK_t, spawn, SHCMD(TERMINAL EDITOR) },
{ MODKEY|ShiftMask, -1, XK_a, spawn, SHCMD(TERMINAL MIXER) },
{ MODKEY|ShiftMask, -1, XK_m, spawn, SHCMD(TERMINAL MUSIC) },
@ -142,6 +141,9 @@ static Key keys[] = {
{ MODKEY, XK_c, XK_w, spawn, SHCMD(TERMINAL "speedwm-core -curl-weather") },
{ MODKEY, XK_c, XK_m, spawn, SHCMD(TERMINAL "speedwm-core -curl-cheatsheet") },
{ MODKEY, XK_r, XK_v, spawn, SHCMD(TERMINAL VISUALIZER) },
{ MODKEY|ShiftMask, XK_e, XK_a, spawn, SHCMD("speedwm-virtualkeyboard") },
{ MODKEY|ShiftMask, XK_e, XK_e, spawn, SHCMD("speedwm-virtualkeyboard -e") },
{ MODKEY|ShiftMask, XK_e, XK_c, spawn, SHCMD("speedwm-virtualkeyboard -c") },
/* Gap keybinds */
{ MODKEY|SMODKEY, -1, XK_j, incrgaps, {.i = +1 } },