speedwm-mkpage: Auto-pushed speedwm changes!

This commit is contained in:
speediegq 2022-09-20 16:53:23 +02:00
parent b9291d67b1
commit f5888a43a5
5 changed files with 16 additions and 12 deletions

View file

@ -117,6 +117,7 @@ Below is a list of all speedwm keybinds.
- 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+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+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
@ -154,6 +155,7 @@ Below is a list of all speedwm keybinds.
- Super+Control+Shift+q | Pauses your music - Super+Control+Shift+q | Pauses your music
- Super+Control+Shift+w | Decreases your music volume - Super+Control+Shift+w | Decreases your music volume
- Super+Control+Shift+e | Increase your music volume - Super+Control+Shift+e | Increase your music volume
- Super+Control+Shift+r | Restart speedwm
- Super+Alt+s | Make the current selected window sticky - Super+Alt+s | Make the current selected window sticky
- Super+Alt+Up/Down | Resize the window keeping the aspect ratio of it. - Super+Alt+Up/Down | Resize the window keeping the aspect ratio of it.
- Alt+Tab | Switch windows quickly and easily - Alt+Tab | Switch windows quickly and easily
@ -170,11 +172,13 @@ Below is a list of all speedwm keybinds.
- Super+Shift+g & i | Decrease inner gaps by 1 - Super+Shift+g & i | Decrease inner gaps by 1
- Super+g & o | Increase outer gaps by 1 - Super+g & o | Increase outer gaps by 1
- Super+Shift+g & o | Decrease outer gaps by 1 - Super+Shift+g & o | Decrease outer gaps by 1
- Super+r+v | Open the defined music visualizer - Super+r & v | Open the defined music visualizer
- Super+Shift+e+a | Open the virtual keyboard - Super+r & s | Run screenkey if it is installed
- Super+Shift+e+e | Open a list of all emojis and copy the selection - Super+r & d | Kill screenkey
- Super+Shift+e+a | Open a list of copypasta and copy the selection - Super+Shift+e & a | Open the virtual keyboard
- Alt+Shift+q+o | Kill every window except the focused - 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
- Alt+Shift+q & o | Kill every window except the focused
### Extras ### Extras
@ -193,7 +197,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
@ -353,7 +357,7 @@ Note that the 'xrdb' dependency is required for both pywal and .Xresources suppo
- speedwm.col_status15: #ffffff - speedwm.col_status15: #ffffff
- speedwm.borderpx: 1 - speedwm.borderpx: 1
- speedwm.snap: 20 - speedwm.snap: 20
- speedwm.showbar: 1 - speedwm.hidebar: 1
- speedwm.resizehints: 0 - speedwm.resizehints: 0
- speedwm.mousemfact: 1 - speedwm.mousemfact: 1
- speedwm.mfact: 0.50 - speedwm.mfact: 0.50

View file

@ -88,9 +88,9 @@
!! !!
- speedwm.snap: 20 - speedwm.snap: 20
!! !!
!! Show the bar or not (1/0) !! Hide the bar or not (1/0)
!! !!
- speedwm.showbar: 1 - speedwm.hidebar: 1
!! !!
!! Show resize hints or not (1/0) !! Show resize hints or not (1/0)
!! !!

View file

@ -220,7 +220,7 @@ static int underlinestroke = 2; /* Height of the underline */
static int underlinevoffset = 0; /* How far above the bottom of the bar the line should appear */ static int underlinevoffset = 0; /* How far above the bottom of the bar the line should appear */
/* Bar item options */ /* Bar item options */
static int showbar = 1; /* Show the bar or not? */ static int hidebar = 0; /* Hide the bar (1) or show (0) */
static int hidelayout = 0; /* Hide layout indicator (1) or show (0) */ static int hidelayout = 0; /* Hide layout indicator (1) or show (0) */
static int hidetitle = 0; /* Hide title (1) or show (0) */ static int hidetitle = 0; /* Hide title (1) or show (0) */
static int hidetitletext = 0; /* Hide title text (1) or show (0) */ static int hidetitletext = 0; /* Hide title text (1) or show (0) */

View file

@ -1395,7 +1395,7 @@ createmon(void)
m->tagset[0] = m->tagset[1] = startontag ? 1 : 0; m->tagset[0] = m->tagset[1] = startontag ? 1 : 0;
m->mfact = mfact; m->mfact = mfact;
m->nmaster = nmaster; m->nmaster = nmaster;
m->showbar = showbar; m->showbar = !hidebar;
m->barposition = barposition; m->barposition = barposition;
m->bh = bh; m->bh = bh;
m->gappih = gappih; m->gappih = gappih;

View file

@ -125,7 +125,7 @@ ResourcePref resources[] = {
{ "refreshrules", INTEGER, &refreshrules }, { "refreshrules", INTEGER, &refreshrules },
{ "borderpx", INTEGER, &borderpx }, { "borderpx", INTEGER, &borderpx },
{ "snap", INTEGER, &snap }, { "snap", INTEGER, &snap },
{ "showbar", INTEGER, &showbar }, { "hidebar", INTEGER, &hidebar },
{ "nmaster", INTEGER, &nmaster }, { "nmaster", INTEGER, &nmaster },
{ "attachdirection", INTEGER, &attachdirection }, { "attachdirection", INTEGER, &attachdirection },
{ "resizehints", INTEGER, &resizehints }, { "resizehints", INTEGER, &resizehints },