This commit is contained in:
speediegq 2022-10-12 22:40:21 +02:00
parent 88230b9d57
commit 2bcafe14c9
3 changed files with 7 additions and 2 deletions

3
TODO
View file

@ -1,3 +1,4 @@
speedwm 0.7 to-do list
- Escape special characters in status bar (such as &)
- Add awesomebar (show all windows in taskbar) toggle (int hideothertitle?) Check musl, NixOS and BSD support
- Add awesomebar (show all windows in taskbar) toggle (int hideothertitle?)
- Check musl, NixOS and BSD support

View file

@ -5,7 +5,9 @@
* Once you're done with your edits, run 'make clean install'. */
static Signal signals[] = {
/* signum function argument */
#if LAYOUT_CUSTOM
{ 15, set_s_layout, {.v = &layouts[13]} },
#endif
{ 16, cyclelayout, {.i = +1 } },
{ 17, cyclelayout, {.i = -1 } },
{ 18, setmfact, {.f = +0.05} },
@ -51,7 +53,9 @@ static Signal signals[] = {
{ 58, scratchpad_remove, {0} },
{ 59, reset_layout, {0} },
{ 60, resetnmaster, {0} },
#if USESYSTRAY
{ 61, togglesystray, {0} },
#endif
{ 62, hideall, {0} },
{ 63, showall, {0} },
{ 64, reset_mfact, {0} },

View file

@ -52,4 +52,4 @@ Not compatible with BSDs so for those, set this to 0. */
#define LAYOUT_CM 1 /* Whether or not to include the centered master layout */
#define LAYOUT_CFM 1 /* Whether or not to include the centered floating master layout */
#define LAYOUT_COL 1 /* Whether or not to include the column layout */
#define LAYOUT_CUSTOM 1 /* Whether or not to include the empty layout */
#define LAYOUT_CUSTOM 1 /* Whether or not to include the custom layout */