From 7ded3239a68ddc516adbe3799c32604375567e61 Mon Sep 17 00:00:00 2001 From: Philip Wittamore Date: Sun, 15 Jun 2025 22:47:45 +0200 Subject: update --- README.md | 1 + config.def.h | 11 ++++++----- config.h | 10 +++++----- drw.o | Bin 0 -> 11296 bytes dwm | Bin 73736 -> 82768 bytes dwm.c | 2 +- dwm.o | Bin 0 -> 75192 bytes util.o | Bin 0 -> 2400 bytes 8 files changed, 13 insertions(+), 11 deletions(-) create mode 100644 drw.o create mode 100644 dwm.o create mode 100644 util.o diff --git a/README.md b/README.md index ae618a1..8d8e5d1 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,4 @@ - statuscmd - center - restartsig +- ewmhtags diff --git a/config.def.h b/config.def.h index 1884506..2f31dd0 100644 --- a/config.def.h +++ b/config.def.h @@ -7,7 +7,7 @@ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:pixelsize=12:antialias=true:autohint=true" }; +static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:size=11:antialias=true:autohint=true" }; static const char dmenufont[] = "Iosevka Nerd Font Mono:size=11"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -33,9 +33,10 @@ static const Rule rules[] = { { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, - { "Orage", NULL, NULL, 0, 1, 1, 0, 1, -1 }, - { "st-256color", NULL, NULL, 0, 1, 1, 1, 1, -1 }, - { "galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "St", NULL, NULL, 0, 1, 1, 1, 1, -1 }, + { "Galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Yad", NULL, NULL, 0, 0, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -110,7 +111,7 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Up, rotatestack, {.i = +1 } }, { MODKEY|ShiftMask, XK_Down, rotatestack, {.i = -1 } }, { MODKEY|ShiftMask, XK_q, quit, {0} }, - { MODKEY|ControlMask|ShiftMask, XK_q, quit, {1} }, + { MODKEY|ControlMask|ShiftMask, XK_q, quit, {1} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY|ShiftMask, XK_agrave, tag, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, diff --git a/config.h b/config.h index 1884506..4136fe6 100644 --- a/config.h +++ b/config.h @@ -7,7 +7,7 @@ static const unsigned int snap = 32; /* snap pixel */ static const int swallowfloating = 0; /* 1 means swallow floating windows by default */ static const int showbar = 1; /* 0 means no bar */ static const int topbar = 1; /* 0 means bottom bar */ -static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:pixelsize=12:antialias=true:autohint=true" }; +static const char *fonts[] = { "Iosevka Nerd Font Regular:size=11","JoyPixels:size=11:antialias=true:autohint=true" }; static const char dmenufont[] = "Iosevka Nerd Font Mono:size=11"; static char normbgcolor[] = "#222222"; static char normbordercolor[] = "#444444"; @@ -33,9 +33,10 @@ static const Rule rules[] = { { "Gimp", NULL, NULL, 0, 0, 1, 0, 0, -1 }, { "Librewolf", NULL, NULL, 1 << 8, 0, 0, 0, 0, -1 }, { "Kitty", NULL, NULL, 0, 0, 0, 1, 0, -1 }, - { "Orage", NULL, NULL, 0, 1, 1, 0, 1, -1 }, - { "st-256color", NULL, NULL, 0, 1, 1, 1, 1, -1 }, - { "galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Orage", NULL, NULL, 0, 0, 1, 0, 1, -1 }, + { "St", NULL, NULL, 0, 1, 1, 1, 1, -1 }, + { "Galculator", NULL, NULL, 0, 1, 1, 0, 1, -1 }, + { "Yad", NULL, NULL, 0, 0, 1, 0, 1, -1 }, { NULL, NULL, "Event Tester", 0, 0, 0, 0, 1, -1 }, /* xev */ }; @@ -110,7 +111,6 @@ static const Key keys[] = { { MODKEY|ShiftMask, XK_Up, rotatestack, {.i = +1 } }, { MODKEY|ShiftMask, XK_Down, rotatestack, {.i = -1 } }, { MODKEY|ShiftMask, XK_q, quit, {0} }, - { MODKEY|ControlMask|ShiftMask, XK_q, quit, {1} }, { MODKEY|ShiftMask, XK_space, togglefloating, {0} }, { MODKEY|ShiftMask, XK_agrave, tag, {.ui = ~0 } }, { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } }, diff --git a/drw.o b/drw.o new file mode 100644 index 0000000..dbafb16 Binary files /dev/null and b/drw.o differ diff --git a/dwm b/dwm index 7155ad6..0cb87d1 100755 Binary files a/dwm and b/dwm differ diff --git a/dwm.c b/dwm.c index 32c46be..53ff6b2 100644 --- a/dwm.c +++ b/dwm.c @@ -247,9 +247,9 @@ static void setup(void); static void setviewport(void); static void seturgent(Client *c, int urg); static void showhide(Client *c); -static void sigstatusbar(const Arg *arg); static void sighup(int unused); static void sigterm(int unused); +static void sigstatusbar(const Arg *arg); static void spawn(const Arg *arg); static void tag(const Arg *arg); static void tagmon(const Arg *arg); diff --git a/dwm.o b/dwm.o new file mode 100644 index 0000000..1318398 Binary files /dev/null and b/dwm.o differ diff --git a/util.o b/util.o new file mode 100644 index 0000000..26adb18 Binary files /dev/null and b/util.o differ -- cgit v1.2.3