From c09e854cc456a3d4d27b12b8207b3805aaa90425 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Thu, 27 Jan 2022 13:08:51 -0500 Subject: Added TODO list to README I keep having thoughts of adjustments to make, so I figure I should try listing them somewhere. --- README | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README b/README index 95d4fd0..77774bc 100644 --- a/README +++ b/README @@ -2,6 +2,24 @@ dwm - dynamic window manager ============================ dwm is an extremely fast, small, and dynamic window manager for X. +Tasks to Complete +----------------- +1. Update the status bar on all monitors, even if not active, rather + than only on the active monitor. +2. Pulling up Tag 0 automatically switches to grid-view +3. Pulling up Tag 0 operates on all monitors, not just the active one. + Leaving Tag 0 on one monitor leaves it on all of them +4. Clean rebuild. There are surely some patches that I applied + but do not use. Rebuilding from the ground up would result in + a cleaner code-base. +5. Update the man-page to reflect usage. +6. Update Makefile to suppress common warnings (like unused functions) + +Long-term Goals +--------------- +* Centralize code across the suckless utilities that I use, + do I really need two XRBD implementations, two font-rendering + implementations, etc., for dwm and dmenu? Requirements ------------ -- cgit v1.2.3 From 904713caac738ec83579abcda7dc71e3c3d3dfcd Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Tue, 1 Feb 2022 13:10:15 -0500 Subject: weechat keybinding: Added SUPER- as a binding for launching wee-chat --- config.def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 95596e3..8cdfdba 100644 --- a/config.def.h +++ b/config.def.h @@ -252,7 +252,7 @@ static Key keys[] = { { MODKEY, XK_F2, spawn, SHCMD("kitty neomutt")}, { MODKEY, XK_F3, spawn, SHCMD("kitty newsboat -u /home/douglas/.local/share/feeds -c /home/douglas/.cache/newsboat/cache -C /home/douglas/.config/newsboat/config")}, { MODKEY, XK_F4, spawn, SHCMD("kitty khal interactive")}, - { MODKEY, XK_F5, spawn, SHCMD("")}, + { MODKEY, XK_F5, spawn, SHCMD("kitty weechat")}, { MODKEY, XK_F6, spawn, SHCMD("")}, { MODKEY, XK_F7, spawn, SHCMD("")}, { MODKEY, XK_F8, togglescratch, {.ui = 4 } }, -- cgit v1.2.3 From 43d5eaba2564d46ae498928380cd7d563300c655 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Thu, 3 Feb 2022 13:51:35 -0500 Subject: Updated todo list --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 77774bc..649f184 100644 --- a/README +++ b/README @@ -14,6 +14,7 @@ Tasks to Complete a cleaner code-base. 5. Update the man-page to reflect usage. 6. Update Makefile to suppress common warnings (like unused functions) +7. Keybinding to suppress screenlocker, with possible statusbar icon Long-term Goals --------------- -- cgit v1.2.3 From bab3b75b9a4f9fc1f7bf2d586da126fbaf7a1f59 Mon Sep 17 00:00:00 2001 From: Douglas Rumbaugh Date: Thu, 3 Feb 2022 13:51:51 -0500 Subject: Added keybinding for htop --- config.def.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config.def.h b/config.def.h index 8cdfdba..c99dcf4 100644 --- a/config.def.h +++ b/config.def.h @@ -77,6 +77,8 @@ const char *spcmd2[] = {"kitty", "--name", "spterm", NULL }; const char *spcmd3[] = {"kitty", "--name", "spnvim", "-e", "nvim", NULL }; const char *spcmd4[] = {"kitty", "--name", "spmixer", "-e", "pulsemixer", NULL}; const char *spcmd5[] = {"kitty", "--name", "spmusic", "-e", "ncmpcpp", NULL}; +const char *spcmd6[] = {"kitty", "--name", "sptop", "-e", "htop", NULL}; + static Sp scratchpads[] = { /* name cmd */ {"spcalc", spcmd1}, @@ -84,6 +86,7 @@ static Sp scratchpads[] = { {"spnvim", spcmd3}, {"spmixer", spcmd4}, {"spmusic", spcmd5}, + {"sptop", spcmd6}, }; /* tagging */ @@ -104,6 +107,7 @@ static const Rule rules[] = { { NULL, "spnvim", NULL, SPTAG(2), 1, 1, 0, -1 }, { NULL, "spmixer", NULL, SPTAG(3), 1, 1, 0, -1 }, { NULL, "spmusic", NULL, SPTAG(4), 1, 1, 0, -1 }, + { NULL, "sptop", NULL, SPTAG(5), 1, 1, 0, -1 }, }; /* layout(s) */ @@ -254,7 +258,7 @@ static Key keys[] = { { MODKEY, XK_F4, spawn, SHCMD("kitty khal interactive")}, { MODKEY, XK_F5, spawn, SHCMD("kitty weechat")}, { MODKEY, XK_F6, spawn, SHCMD("")}, - { MODKEY, XK_F7, spawn, SHCMD("")}, + { MODKEY, XK_F7, togglescratch, {.ui = 5 } }, { MODKEY, XK_F8, togglescratch, {.ui = 4 } }, { MODKEY, XK_F9, togglescratch, {.ui = 3 } }, { MODKEY, XK_F10, togglescratch, {.ui = 0 } }, -- cgit v1.2.3