speedwm-mkpage: Auto-pushed speedwm changes!

This commit is contained in:
speediegq 2022-09-21 19:01:58 +02:00
parent a193c675d7
commit 0e517db3f9
2 changed files with 8 additions and 6 deletions

View file

@ -65,6 +65,10 @@ Below is a list of all speedwm keybinds.
- Super+Shift+a | Opens the defined mixer in your terminal - Super+Shift+a | Opens the defined mixer in your terminal
- Super+Shift+m | Opens the defined music player - Super+Shift+m | Opens the defined music player
- Super+Shift+x | Opens the defined system process viewer in your terminal - Super+Shift+x | Opens the defined system process viewer in your terminal
- Super+Shift+c | Opens the defined chat client
- Super+Shift+i | Open a dmenu prompt and open the file the user picks in Zathura
- Super+Shift+p | Open a dmenu prompt and open the file the user picks in Vim
- Super+Shift+d | Opens iron in the terminal if it is installed.
- Super+Control+Shift+m | Opens the defined email client - Super+Control+Shift+m | Opens the defined email client
- Super+Control+u | Opens the defined RSS reader - Super+Control+u | Opens the defined RSS reader
@ -84,12 +88,13 @@ Below is a list of all speedwm keybinds.
- Super+a/d | Increase/decrease size of each window - Super+a/d | Increase/decrease size of each window
- Super+o | Hide a window - Super+o | Hide a window
- Super+Control+o | Show a hidden focused window - Super+Control+o | Show a hidden focused window
- Super+a/d | Move to the next/previous tag - Super+Control+a/d | Move to the next/previous tag
- Super+Minus | Show the scratchpad - Super+Minus | Show the scratchpad
- Super+Equal | Remove the scratchpad - Super+Equal | Remove the scratchpad
- Super+Enter | Switch order of windows - Super+Enter | Switch order of windows
- Super+Shift+q | Close the current window - Super+Shift+q | Close the current window
- Super+Space | Set layout - Super+Space | Set layout
- Super+r | Reset number of masters
- Super+t | Disable inactive fade - Super+t | Disable inactive fade
- Super+Shift+Equal | Toggle scratchpads - Super+Shift+Equal | Toggle scratchpads
- Super+Shift+Minus | Hide the scratchpad - Super+Shift+Minus | Hide the scratchpad
@ -115,9 +120,6 @@ Below is a list of all speedwm keybinds.
- Super+Shift+9 | Preview tag 9 - Super+Shift+9 | Preview tag 9
- Super+Shift+h/j/k/l | Rotates a stack. - Super+Shift+h/j/k/l | Rotates a stack.
- Super+Shift+Escape | Ask the user if they want to shutdown or reboot or nothing - Super+Shift+Escape | Ask the user if they want to shutdown or reboot or nothing
- Super+Shift+i | Open a dmenu prompt and open the file the user picks in Zathura
- Super+Shift+p | Open a dmenu prompt and open the file the user picks in Vim
- Super+Shift+d | Opens iron in the terminal if it is installed.
- Super+Control+1 | Combine the current tag with tag 1 - Super+Control+1 | Combine the current tag with tag 1
- Super+Control+2 | Combine the current tag with tag 2 - Super+Control+2 | Combine the current tag with tag 2
- Super+Control+3 | Combine the current tag with tag 3 - Super+Control+3 | Combine the current tag with tag 3
@ -197,7 +199,7 @@ Below is a list of all speedwm keybinds.
- Music button | Open your defined music player - Music button | Open your defined music player
- WLAN button | Disconnect from WLAN - WLAN button | Disconnect from WLAN
### Mouse -- Mouse --
These binds can be activated using your mouse These binds can be activated using your mouse

2
ipc.h
View file

@ -8,7 +8,7 @@
* - Set USEIPC to 1 in toggle.h. * - Set USEIPC to 1 in toggle.h.
*/ */
static const char *ipcsockpath = "/tmp/speedwm.sock"; static char *ipcsockpath = "/tmp/speedwm.sock";
static IPCCommand ipccommands[] = { static IPCCommand ipccommands[] = {
IPCCOMMAND( view, 1, { ARG_TYPE_UINT } ), IPCCOMMAND( view, 1, { ARG_TYPE_UINT } ),
IPCCOMMAND( tagmon, 1, { ARG_TYPE_UINT } ), IPCCOMMAND( tagmon, 1, { ARG_TYPE_UINT } ),