aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorc2024-01-25 21:23:10 -0500
committerc2024-01-25 21:23:10 -0500
commit6b1e3ef09dac649e5a4d885adefda91f7c27c906 (patch)
tree577f8de590e3b75e3723bf752b0ca834f3c150da
parent1af4a1e1a94c17fc3de958b74d03bc586248c8b5 (diff)
Not a clue.
-rw-r--r--.gitignore1
-rw-r--r--config.h6
-rwxr-xr-xdwmbin74184 -> 74304 bytes
3 files changed, 7 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 6388947..3d212c6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
*.out
*.rej
*.orig
+dwm
diff --git a/config.h b/config.h
index 99a35e5..ac9f582 100644
--- a/config.h
+++ b/config.h
@@ -78,6 +78,8 @@ static const Rule rules[] = {
{ "dolphin", NULL, NULL, 0, 1, 0, 0, -1 }, /* Dolphin. */
{ "firefox", NULL, "Picture-in-Picture", 0, 1, 0, 0, -1 }, /* Firefox PIP. */
{ "Alacritty", NULL, NULL, 0, 0, 1, 0, -1 }, /* Alacritty. */
+ { "zoom", NULL, NULL, 0, 1, 0, 0, -1 }, /* Zoom popups. */
+ { "zoom", NULL, "Zoom Meeting", 0, 1, 0, 0, -1 }, /* Zooom window. */
};
/* Key definitions. */
@@ -103,6 +105,8 @@ static const char *webcmd[] = { SCR "launchers/web.sh", NULL };
static const char *passcmd[] = { SCR "/sbin/passmenu", NULL };
static const char *bmkscmd[] = { SCR "bmks", NULL };
static const char *bmkaddcmd[]= { SCR "bmks", "dadd", NULL };
+static const char *scrshotcmd[]= { "flameshot", "gui", NULL };
+static const char *fscrshotcmd[]= { "flameshot", "full", NULL };
static const char *papercmd[] = { SCR "wallpaper.sh", NULL };
@@ -175,6 +179,8 @@ static const Key keys[] = {
{ MODKEY|ShiftMask, XK_equal, setgaps, {.i = +5 } }, /* Increase window gaps. */
{ MODKEY, XK_equal, resetgaps, {0} }, /* Reset window gaps. */
{ MODKEY|ShiftMask, XK_q, quit, {0} }, /* Quit dwm. */
+ { 0, XK_Print, spawn, {.v = scrshotcmd } },
+ { ShiftMask, XK_Print, spawn, {.v = fscrshotcmd} },
/* Function keys. */
{ 0, 0x1008ff13, spawn, SHCMD(SCR "setvol.sh i") }, /* Increase volume. */
diff --git a/dwm b/dwm
index 0ec32c3..57f294d 100755
--- a/dwm
+++ b/dwm
Binary files differ