mirror of
https://github.com/tiyn/dwm.git
synced 2025-10-15 20:31:18 +02:00
Compare commits
3 Commits
statusallm
...
quitprompt
Author | SHA1 | Date | |
---|---|---|---|
22b482d2c9 | |||
cdacc63d2c | |||
61088a7795 |
@@ -93,7 +93,7 @@ static Key keys[] = {
|
|||||||
TAGKEYS( XK_7, 6)
|
TAGKEYS( XK_7, 6)
|
||||||
TAGKEYS( XK_8, 7)
|
TAGKEYS( XK_8, 7)
|
||||||
TAGKEYS( XK_9, 8)
|
TAGKEYS( XK_9, 8)
|
||||||
{ MODKEY|ShiftMask, XK_q, quit, {0} },
|
{ MODKEY|ShiftMask, XK_q, quitprompt, {0} },
|
||||||
};
|
};
|
||||||
|
|
||||||
/* button definitions */
|
/* button definitions */
|
||||||
|
92
dwm-quitprompt-20220718-6613d9f.diff
Normal file
92
dwm-quitprompt-20220718-6613d9f.diff
Normal file
@@ -0,0 +1,92 @@
|
|||||||
|
From eb558048819ed916b272765e64e1ea795a85740e Mon Sep 17 00:00:00 2001
|
||||||
|
From: Lerrrtaste <lerrrtaste@protonmail.com>
|
||||||
|
Date: Mon, 18 Jul 2022 12:22:39 +0200
|
||||||
|
Subject: [PATCH] This Patch replaces the default quit behavior with an dmenu
|
||||||
|
prompt. Possible selections are (Quit DWM?) "yes", "no" and "restart". The
|
||||||
|
additional confirmation can save your work from accidentally hitting the quit
|
||||||
|
key by requiring two additional keystrokes (y/yes and RET). Additionally it
|
||||||
|
allows for restarting / reloading dwm without ending the xsession and closing
|
||||||
|
all open x windows. To abort press ESC or n/no and RET.
|
||||||
|
|
||||||
|
---
|
||||||
|
config.def.h | 2 +-
|
||||||
|
dwm.c | 30 ++++++++++++++++++++++++++++++
|
||||||
|
2 files changed, 31 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/config.def.h b/config.def.h
|
||||||
|
index a2ac963..9e3b394 100644
|
||||||
|
--- a/config.def.h
|
||||||
|
+++ b/config.def.h
|
||||||
|
@@ -94,7 +94,7 @@ static Key keys[] = {
|
||||||
|
TAGKEYS( XK_7, 6)
|
||||||
|
TAGKEYS( XK_8, 7)
|
||||||
|
TAGKEYS( XK_9, 8)
|
||||||
|
- { MODKEY|ShiftMask, XK_q, quit, {0} },
|
||||||
|
+ { MODKEY|ShiftMask, XK_q, quitprompt, {0} },
|
||||||
|
};
|
||||||
|
|
||||||
|
/* button definitions */
|
||||||
|
diff --git a/dwm.c b/dwm.c
|
||||||
|
index 7c0f978..3761ba4 100644
|
||||||
|
--- a/dwm.c
|
||||||
|
+++ b/dwm.c
|
||||||
|
@@ -188,6 +188,7 @@ static Client *nexttiled(Client *c);
|
||||||
|
static void pop(Client *c);
|
||||||
|
static void propertynotify(XEvent *e);
|
||||||
|
static void quit(const Arg *arg);
|
||||||
|
+static void quitprompt(const Arg *arg);
|
||||||
|
static Monitor *recttomon(int x, int y, int w, int h);
|
||||||
|
static void resize(Client *c, int x, int y, int w, int h, int interact);
|
||||||
|
static void resizeclient(Client *c, int x, int y, int w, int h);
|
||||||
|
@@ -262,6 +263,7 @@ static void (*handler[LASTEvent]) (XEvent *) = {
|
||||||
|
};
|
||||||
|
static Atom wmatom[WMLast], netatom[NetLast];
|
||||||
|
static int running = 1;
|
||||||
|
+static int restart = 1;
|
||||||
|
static Cur *cursor[CurLast];
|
||||||
|
static Clr **scheme;
|
||||||
|
static Display *dpy;
|
||||||
|
@@ -1258,6 +1260,31 @@ quit(const Arg *arg)
|
||||||
|
running = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
+void
|
||||||
|
+quitprompt(const Arg *arg)
|
||||||
|
+{
|
||||||
|
+ FILE *pp = popen("echo -e \"no\nrestart\nyes\" | dmenu -i -sb red -p \"Quit DWM?\"", "r");
|
||||||
|
+ if(pp != NULL) {
|
||||||
|
+ char buf[1024];
|
||||||
|
+ if (fgets(buf, sizeof(buf), pp) == NULL) {
|
||||||
|
+ fprintf(stderr, "Quitprompt: Error reading pipe!\n");
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ if (strcmp(buf, "yes\n") == 0) {
|
||||||
|
+ pclose(pp);
|
||||||
|
+ restart = 0;
|
||||||
|
+ quit(NULL);
|
||||||
|
+ } else if (strcmp(buf, "restart\n") == 0) {
|
||||||
|
+ pclose(pp);
|
||||||
|
+ restart = 1;
|
||||||
|
+ quit(NULL);
|
||||||
|
+ } else if (strcmp(buf, "no\n") == 0) {
|
||||||
|
+ pclose(pp);
|
||||||
|
+ return;
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
Monitor *
|
||||||
|
recttomon(int x, int y, int w, int h)
|
||||||
|
{
|
||||||
|
@@ -2155,5 +2182,8 @@ main(int argc, char *argv[])
|
||||||
|
run();
|
||||||
|
cleanup();
|
||||||
|
XCloseDisplay(dpy);
|
||||||
|
+ if (restart == 1) {
|
||||||
|
+ execlp("dwm", "dwm", NULL);
|
||||||
|
+ }
|
||||||
|
return EXIT_SUCCESS;
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.36.0
|
||||||
|
|
@@ -1,25 +0,0 @@
|
|||||||
diff -up a/dwm.c b/dwm.c
|
|
||||||
--- a/dwm.c 2020-07-09 16:49:10.023585649 +0200
|
|
||||||
+++ b/dwm.c 2020-07-09 16:49:43.497542191 +0200
|
|
||||||
@@ -702,7 +702,7 @@ drawbar(Monitor *m)
|
|
||||||
Client *c;
|
|
||||||
|
|
||||||
/* draw status first so it can be overdrawn by tags later */
|
|
||||||
- if (m == selmon) { /* status is only drawn on selected monitor */
|
|
||||||
+ if (m == selmon || 1) { /* status is only drawn on selected monitor */
|
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
|
||||||
sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
|
|
||||||
drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
|
|
||||||
@@ -1987,9 +1987,11 @@ updatesizehints(Client *c)
|
|
||||||
void
|
|
||||||
updatestatus(void)
|
|
||||||
{
|
|
||||||
+ Monitor* m;
|
|
||||||
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
|
|
||||||
strcpy(stext, "dwm-"VERSION);
|
|
||||||
- drawbar(selmon);
|
|
||||||
+ for(m = mons; m; m = m->next)
|
|
||||||
+ drawbar(m);
|
|
||||||
}
|
|
||||||
|
|
||||||
void
|
|
36
dwm.c
36
dwm.c
@@ -187,6 +187,7 @@ static Client *nexttiled(Client *c);
|
|||||||
static void pop(Client *);
|
static void pop(Client *);
|
||||||
static void propertynotify(XEvent *e);
|
static void propertynotify(XEvent *e);
|
||||||
static void quit(const Arg *arg);
|
static void quit(const Arg *arg);
|
||||||
|
static void quitprompt(const Arg *arg);
|
||||||
static Monitor *recttomon(int x, int y, int w, int h);
|
static Monitor *recttomon(int x, int y, int w, int h);
|
||||||
static void resize(Client *c, int x, int y, int w, int h, int interact);
|
static void resize(Client *c, int x, int y, int w, int h, int interact);
|
||||||
static void resizeclient(Client *c, int x, int y, int w, int h);
|
static void resizeclient(Client *c, int x, int y, int w, int h);
|
||||||
@@ -261,6 +262,7 @@ static void (*handler[LASTEvent]) (XEvent *) = {
|
|||||||
};
|
};
|
||||||
static Atom wmatom[WMLast], netatom[NetLast];
|
static Atom wmatom[WMLast], netatom[NetLast];
|
||||||
static int running = 1;
|
static int running = 1;
|
||||||
|
static int restart = 1;
|
||||||
static Cur *cursor[CurLast];
|
static Cur *cursor[CurLast];
|
||||||
static Clr **scheme;
|
static Clr **scheme;
|
||||||
static Display *dpy;
|
static Display *dpy;
|
||||||
@@ -702,7 +704,7 @@ drawbar(Monitor *m)
|
|||||||
Client *c;
|
Client *c;
|
||||||
|
|
||||||
/* draw status first so it can be overdrawn by tags later */
|
/* draw status first so it can be overdrawn by tags later */
|
||||||
if (m == selmon || 1) { /* status is only drawn on selected monitor */
|
if (m == selmon) { /* status is only drawn on selected monitor */
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
drw_setscheme(drw, scheme[SchemeNorm]);
|
||||||
sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
|
sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
|
||||||
drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
|
drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
|
||||||
@@ -1251,6 +1253,31 @@ quit(const Arg *arg)
|
|||||||
running = 0;
|
running = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
quitprompt(const Arg *arg)
|
||||||
|
{
|
||||||
|
FILE *pp = popen("echo -e \"no\nrestart\nyes\" | dmenu -i -sb red -p \"Quit DWM?\"", "r");
|
||||||
|
if(pp != NULL) {
|
||||||
|
char buf[1024];
|
||||||
|
if (fgets(buf, sizeof(buf), pp) == NULL) {
|
||||||
|
fprintf(stderr, "Quitprompt: Error reading pipe!\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (strcmp(buf, "yes\n") == 0) {
|
||||||
|
pclose(pp);
|
||||||
|
restart = 0;
|
||||||
|
quit(NULL);
|
||||||
|
} else if (strcmp(buf, "restart\n") == 0) {
|
||||||
|
pclose(pp);
|
||||||
|
restart = 1;
|
||||||
|
quit(NULL);
|
||||||
|
} else if (strcmp(buf, "no\n") == 0) {
|
||||||
|
pclose(pp);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Monitor *
|
Monitor *
|
||||||
recttomon(int x, int y, int w, int h)
|
recttomon(int x, int y, int w, int h)
|
||||||
{
|
{
|
||||||
@@ -1987,11 +2014,9 @@ updatesizehints(Client *c)
|
|||||||
void
|
void
|
||||||
updatestatus(void)
|
updatestatus(void)
|
||||||
{
|
{
|
||||||
Monitor* m;
|
|
||||||
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
|
if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
|
||||||
strcpy(stext, "dwm-"VERSION);
|
strcpy(stext, "dwm-"VERSION);
|
||||||
for(m = mons; m; m = m->next)
|
drawbar(selmon);
|
||||||
drawbar(m);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
@@ -2147,5 +2172,8 @@ main(int argc, char *argv[])
|
|||||||
run();
|
run();
|
||||||
cleanup();
|
cleanup();
|
||||||
XCloseDisplay(dpy);
|
XCloseDisplay(dpy);
|
||||||
|
if (restart == 1) {
|
||||||
|
execlp("dwm", "dwm", NULL);
|
||||||
|
}
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user