My version of DWM

This commit is contained in:
riomoo 2025-01-26 23:56:56 -05:00
parent 5a38a89afd
commit 162f3c32f2
Signed by: riomoo
SSH key fingerprint: SHA256:IidVcrEqw4r/6zlIASTgxRmFBmyRiZ/31wjlNkFzVG0
2 changed files with 6 additions and 4 deletions

View file

@ -20,7 +20,7 @@ dwm: ${OBJ}
${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
rm -f dwm ${OBJ} config.h dwm-${VERSION}.tar.gz
dist: clean
mkdir -p dwm-${VERSION}

View file

@ -5,7 +5,7 @@ static const unsigned int borderpx = 1; /* 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 */
static const char *fonts[] = { "monospace:size=10" };
static const char *fonts[] = { "monospace:size=16" };
#include "/home/moo/.config/themes/using/colors-wal-dwm.h"
@ -18,8 +18,10 @@ static const Rule rules[] = {
* WM_NAME(STRING) = title
*/
/* class instance title tags mask isfloating monitor */
{ "Gimp", NULL, NULL, 0, 1, -1 },
{ "Firefox", NULL, NULL, 1 << 8, 0, -1 },
{ "Gimp", NULL, NULL, 4, 0, -1 },
{ "Waterfox", NULL, NULL, 1, 0, -1 },
{ "Element", NULL, NULL, 8, 0, -1 },
{ "Discord", NULL, NULL, 8, 0, -1 },
};
/* layout(s) */