dwm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 8c39aea383a6d195f1b1dc3725df9609ee78f6bd
parent 7ab25011cafc278bc816edfd34c450593a516d4f
Author: Andrew Laack <andrew.laack@imbue.com>
Date:   Sun, 12 Oct 2025 22:34:02 -0500

Updated themeing and shortcuts

Diffstat:
Mconfig.h | 16+++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/config.h b/config.h @@ -6,7 +6,7 @@ // movestack (move windows up and down the stack. This gives better control) /* appearance */ -static const unsigned int borderpx = 1; /* border pixel of windows */ +static const unsigned int borderpx = 3; /* border pixel of windows */ static const unsigned int snap = 32; /* snap pixel */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ @@ -16,14 +16,13 @@ static const char dmenufont[] = "FiraCode:size=12"; static const char col_black[] = "#000000"; static const char col_white[] = "#000000"; static const char col_lg[] = "#FFFFFF"; - static const char col_gray1[] = "#000000"; static const char col_orange[] = "#FFFFFF"; static const char *colors[][3] = { /* fg bg border */ [SchemeNorm] = { col_lg, col_black, col_black }, - [SchemeSel] = { col_white, col_orange, col_orange }, + [SchemeSel] = { col_white, col_orange, col_orange }, }; /* tagging */ @@ -111,8 +110,10 @@ static const char *workspacecmd[] = {"/home/andrew/bin/init-screen.sh", backgrou //static const char *chromecmd[] = {"/home/andrew/bin/toggle.sh", NULL}; +static const char *lockcmd[] = {"/home/andrew/bin/lock.sh", NULL}; + static const char *screenshotcmd[] = {"/home/andrew/bin/screenshot.sh", NULL}; -static const char *mpvpastecmd[] = {"/home/andrew/bin/mpv.sh", NULL}; +//static const char *mpvpastecmd[] = {"/home/andrew/bin/mpv.sh", NULL}; //static const char *suspendcmd[] = {"/home/andrew/bin/suspend.sh" , NULL}; @@ -158,7 +159,8 @@ static const Key keys[] = { //{ MODKEY|ShiftMask, XK_b, spawn, {.v = addbookmarkcmd} }, { MODKEY|ShiftMask, XK_s, spawn, {.v = screenshotcmd } }, //{ MODKEY|ShiftMask, XK_l, spawn, {.v = openlibrewolfcmd } }, - { MODKEY|ShiftMask, XK_m, spawn, {.v = mpvpastecmd } }, + { MODKEY, XK_l, spawn, {.v = lockcmd } }, + //{ MODKEY|ShiftMask, XK_m, spawn, {.v = mpvpastecmd } }, { MODKEY|ShiftMask, XK_w, spawn, {.v = webbrowsercmd } }, //{ MODKEY|ShiftMask, XK_e, spawn, {.v = emacscmd } }, @@ -221,11 +223,11 @@ static const Key keys[] = { //{ MODKEY, XK_0, view, {.ui = ~0 } }, //{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, - // { MODKEY|ShiftMask, XK_m, focusmon, {.i = -1 } }, + { MODKEY|ShiftMask, XK_m, focusmon, {.i = -1 } }, //{ MODKEY|ShiftMask, XK_Down, focusmon, {.i = +1 } }, //{ MODKEY|ShiftMask, XK_Right, tagmon, {.i = +1 } }, - // { MODKEY|ShiftMask, XK_n, tagmon, {.i = -1 } }, + { MODKEY|ShiftMask, XK_n, tagmon, {.i = -1 } }, { MODKEY|ShiftMask, XK_r, quit, {0} },