mirror of
https://github.com/tiyn/dwm.git
synced 2025-10-19 22:31:17 +02:00
Compare commits
3 Commits
master
...
f6886c63dc
Author | SHA1 | Date | |
---|---|---|---|
f6886c63dc | |||
15843ef473 | |||
aa144160d2 |
23
README.md
23
README.md
@@ -21,9 +21,8 @@ The list below shows the currently applied patches to the master branch.
|
|||||||
- dwm-cyclelayouts-20180524-6.2.diff (adds ability to cycle through layouts)
|
- dwm-cyclelayouts-20180524-6.2.diff (adds ability to cycle through layouts)
|
||||||
- dwm-deck-6.0.diff (adds deck layout)
|
- dwm-deck-6.0.diff (adds deck layout)
|
||||||
- dwm-noborder-6.2.diff (removes border if there is only one window)
|
- dwm-noborder-6.2.diff (removes border if there is only one window)
|
||||||
- dwm-notitle-6.2.diff (removes window title in the middle of the bar)
|
- dwm-notitle-6.2.diff (removes the title of the window in the middle of the bar)
|
||||||
- dwm-pertag-20170513-ceac8c9.diff (allows having a layout/mwfact/barpos/nmaster per tag)
|
- dwm-pertag-20170513-ceac8c9.diff (allows having a layout/mwfact/barpos/nmaster per tag)
|
||||||
- dwm-quitprompt-20220718-6613d9f.diff (adds a confirmation prompt before exiting dwm)
|
|
||||||
- dwm-status2d-6.2.diff (adds colors and ability to draw rectangles)
|
- dwm-status2d-6.2.diff (adds colors and ability to draw rectangles)
|
||||||
- dwm-statusallmons-6.2.diff (display statusbar on every monitors)
|
- dwm-statusallmons-6.2.diff (display statusbar on every monitors)
|
||||||
- dwm-statuscmd-6.2.diff (enables dwmblocks compatibility)
|
- dwm-statuscmd-6.2.diff (enables dwmblocks compatibility)
|
||||||
@@ -41,10 +40,11 @@ build are the following.
|
|||||||
| Super | | j | (Tiling/Deck) Focus window lower in stack than current |
|
| Super | | j | (Tiling/Deck) Focus window lower in stack than current |
|
||||||
| Super | | k | (Tiling/Deck) Focus window higher in stack than current |
|
| Super | | k | (Tiling/Deck) Focus window higher in stack than current |
|
||||||
| Super | | l | (Tiling/Deck) Focus window lower in stack than current |
|
| Super | | l | (Tiling/Deck) Focus window lower in stack than current |
|
||||||
| Super | | 1/2/.../9/0 | Show tag 1/2/.../9/0 |
|
| Super | | 0 | Show all tags |
|
||||||
|
| Super | | 1/2/.../9 | Show tag 1/2/.../9 |
|
||||||
| Super | | . | Show monitor lower in stack |
|
| Super | | . | Show monitor lower in stack |
|
||||||
| Super | | , | Show monitor higher in stack |
|
| Super | | , | Show monitor higher in stack |
|
||||||
| Super | Shift | Escape | Quit dwm with call for confirmation |
|
| Super | Shift | Escape | Quit dwm |
|
||||||
| Super | Shift | b | Toggle dwmbar |
|
| Super | Shift | b | Toggle dwmbar |
|
||||||
| Super | Shift | c | Enable deck(/card) layout |
|
| Super | Shift | c | Enable deck(/card) layout |
|
||||||
| Super | Shift | d | Toggle floating/tiled for selected window |
|
| Super | Shift | d | Toggle floating/tiled for selected window |
|
||||||
@@ -59,18 +59,7 @@ build are the following.
|
|||||||
| Super | Shift | u | Enable bottomstack layout |
|
| Super | Shift | u | Enable bottomstack layout |
|
||||||
| Super | Shift | v | Enable bottomstackhorizontal layout |
|
| Super | Shift | v | Enable bottomstackhorizontal layout |
|
||||||
| Super | Shift | z | (Tiling/Deck) Decrease master window size |
|
| Super | Shift | z | (Tiling/Deck) Decrease master window size |
|
||||||
| Super | Shift | 1/2/.../9/0 | Add current window to tag 1/2/.../9/0 |
|
| Super | Shift | 0 | Add current window to all tag |
|
||||||
|
| Super | Shift | 1/2/.../9 | Add current window to tag 1/2/.../9 |
|
||||||
| Super | Shift | . | Add to monitor lower in stack |
|
| Super | Shift | . | Add to monitor lower in stack |
|
||||||
| Super | Shift | , | Add to monitor higher in stack |
|
| Super | Shift | , | Add to monitor higher in stack |
|
||||||
| Alt | | Tab | (Tiling/Deck) Focus window lower in stack than current |
|
|
||||||
|
|
||||||
## Installation
|
|
||||||
|
|
||||||
The following programs are required to be installed for full functionality.
|
|
||||||
|
|
||||||
- [dmenu](https://github.com/tiyn/dmenu)
|
|
||||||
|
|
||||||
The most basic way is to clone the repository and then invoke make.
|
|
||||||
|
|
||||||
- `git clone https://github.com/tiyn/dwm`
|
|
||||||
- `make clean install`
|
|
||||||
|
38
config.def.h
38
config.def.h
@@ -13,6 +13,7 @@ static const int showsystray = 1; /* 0 means no systray */
|
|||||||
static const int showbar = 1; /* 0 means no bar */
|
static const int showbar = 1; /* 0 means no bar */
|
||||||
static const int topbar = 1; /* 0 means bottom bar */
|
static const int topbar = 1; /* 0 means bottom bar */
|
||||||
static const char *fonts[] = { "monospace:size=10" };
|
static const char *fonts[] = { "monospace:size=10" };
|
||||||
|
static const char dmenufont[] = "monospace:size=10";
|
||||||
static const char normbgcolor[] = "#0e0f14";
|
static const char normbgcolor[] = "#0e0f14";
|
||||||
static const char normbordercolor[] = "#363b47";
|
static const char normbordercolor[] = "#363b47";
|
||||||
static const char normfgcolor[] = "#dfdfdf";
|
static const char normfgcolor[] = "#dfdfdf";
|
||||||
@@ -35,32 +36,15 @@ static const unsigned int alphas[][3] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* tagging */
|
/* tagging */
|
||||||
static const char *tags[] = { "", "", "", "", "", "", "", "", "", "" };
|
static const char *tags[] = { "", "", "", "", "", "", "", "", "", "" };
|
||||||
|
|
||||||
static const Rule rules[] = {
|
static const Rule rules[] = {
|
||||||
/* xprop(1):
|
/* xprop(1):
|
||||||
* WM_CLASS(STRING) = instance, class
|
* WM_CLASS(STRING) = instance, class
|
||||||
* WM_NAME(STRING) = title
|
* WM_NAME(STRING) = title
|
||||||
*/
|
*/
|
||||||
/* class instance title tags center float mon */
|
/* class instance title tags mask iscentered isfloating monitor */
|
||||||
{ "firefox", 0, 0, 1 << 1, 0, 0, -1 },
|
{ NULL, "origin.exe", NULL, 0, 0, 1, -1 },
|
||||||
{ "zen", 0, 0, 1 << 1, 0, 0, -1 },
|
|
||||||
{ "Lutris", 0, 0, 1 << 2, 0, 0, 0 },
|
|
||||||
{ "zenity", 0, 0, 0, 0, 1, -1 },
|
|
||||||
{ "steam", 0, 0, 1 << 2, 0, 0, 0 },
|
|
||||||
{ "discord", 0, 0, 1 << 2, 0, 0, 1 },
|
|
||||||
{ "TeamSpeak", 0, 0, 1 << 2, 0, 0, 1 },
|
|
||||||
{ "Element", 0, 0, 1 << 2, 0, 0, 1 },
|
|
||||||
{ "Signal", 0, 0, 1 << 4, 0, 0, 1 },
|
|
||||||
{ "TelegramDesktop", 0, 0, 1 << 4, 0, 0, 1 },
|
|
||||||
{ "threema-web", 0, 0, 1 << 4, 0, 0, 1 },
|
|
||||||
{ "thunderbird", 0, 0, 1 << 4, 0, 0, 1 },
|
|
||||||
{ "Sonixd", 0, 0, 1 << 8, 0, 0, 1 },
|
|
||||||
{ "KeePassXC", 0, "Unlock Database - KeePassXC", 1 << 1, 0, 0, 0 },
|
|
||||||
{ "KeePassXC", 0, 0, 1 << 9, 0, 0, 0 },
|
|
||||||
{ "easyeffects", 0, 0, 1 << 9, 0, 0, 1 },
|
|
||||||
{ "pavucontrol", 0, 0, 1 << 9, 0, 0, 1 },
|
|
||||||
{ "Onboard", 0, 0, 0, 0, 1, 0 },
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* layout(s) */
|
/* layout(s) */
|
||||||
@@ -90,9 +74,13 @@ static const Layout layouts[] = {
|
|||||||
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
/* helper for spawning shell commands in the pre dwm-5.0 fashion */
|
||||||
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
|
||||||
|
|
||||||
|
/* commands */
|
||||||
|
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||||
|
static const char *dmenucmd[] = { "dmenu_run", "-c", "-l", "20", NULL };
|
||||||
|
|
||||||
static Key keys[] = {
|
static Key keys[] = {
|
||||||
/* modifier key function argument */
|
/* modifier key function argument */
|
||||||
{ MODKEY|ShiftMask, XK_Escape, quitprompt, {0} },
|
{ MODKEY|ShiftMask, XK_Escape, quit, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
{ MODKEY|ShiftMask, XK_b, togglebar, {0} },
|
||||||
{ MODKEY|ShiftMask, XK_c, setlayout, {.v = &layouts[2]} },
|
{ MODKEY|ShiftMask, XK_c, setlayout, {.v = &layouts[2]} },
|
||||||
{ MODKEY|ShiftMask, XK_d, togglefloating, {0} },
|
{ MODKEY|ShiftMask, XK_d, togglefloating, {0} },
|
||||||
@@ -117,7 +105,9 @@ static Key keys[] = {
|
|||||||
{ MODKEY, XK_period, focusmon, {.i = +1} },
|
{ MODKEY, XK_period, focusmon, {.i = +1} },
|
||||||
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1} },
|
{ MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1} },
|
||||||
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1} },
|
{ MODKEY|ShiftMask, XK_period, tagmon, {.i = +1} },
|
||||||
{ Mod1Mask, XK_Tab, focusstack, {.i = +1} },
|
//{ MODKEY|ShiftMask, XK_o, incnmaster, {.i = +1} },
|
||||||
|
//{ MODKEY|ShiftMask, XK_z, incnmaster, {.i = -1} },
|
||||||
|
//{ MODKEY, XK_space, setlayout, {0} },
|
||||||
|
|
||||||
TAGKEYS(XK_1, 0)
|
TAGKEYS(XK_1, 0)
|
||||||
TAGKEYS(XK_2, 1)
|
TAGKEYS(XK_2, 1)
|
||||||
@@ -132,11 +122,11 @@ static Key keys[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* button definitions */
|
/* button definitions */
|
||||||
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkClientWin, or ClkRootWin */
|
/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
|
||||||
static Button buttons[] = {
|
static Button buttons[] = {
|
||||||
/* click event mask button function argument */
|
/* click event mask button function argument */
|
||||||
{ ClkLtSymbol, 0, Button1, cyclelayout, {.i = +1} },
|
{ ClkLtSymbol, 0, Button1, cyclelayout, {.i = +1} },
|
||||||
{ ClkLtSymbol, 0, Button2, focusstack, {.i = +1} },
|
{ ClkLtSymbol, 0, Button2, setlayout, {.v = &layouts[0]} },
|
||||||
{ ClkLtSymbol, 0, Button3, cyclelayout, {.i = -1} },
|
{ ClkLtSymbol, 0, Button3, cyclelayout, {.i = -1} },
|
||||||
{ ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1} },
|
{ ClkStatusText, 0, Button1, sigdwmblocks, {.i = 1} },
|
||||||
{ ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2} },
|
{ ClkStatusText, 0, Button2, sigdwmblocks, {.i = 2} },
|
||||||
|
@@ -1,92 +0,0 @@
|
|||||||
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
|
|
||||||
|
|
34
dwm.c
34
dwm.c
@@ -222,7 +222,6 @@ 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 removesystrayicon(Client *i);
|
static void removesystrayicon(Client *i);
|
||||||
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);
|
||||||
@@ -315,7 +314,6 @@ static void (*handler[LASTEvent]) (XEvent *) = {
|
|||||||
};
|
};
|
||||||
static Atom wmatom[WMLast], netatom[NetLast], xatom[XLast];
|
static Atom wmatom[WMLast], netatom[NetLast], xatom[XLast];
|
||||||
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;
|
||||||
@@ -1060,9 +1058,11 @@ drawbar(Monitor *m)
|
|||||||
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
|
x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
|
||||||
|
|
||||||
if ((w = m->ww - sw - stw - x) > bh) {
|
if ((w = m->ww - sw - stw - x) > bh) {
|
||||||
|
if ((w = m->ww - sw - x) > bh) {
|
||||||
drw_setscheme(drw, scheme[SchemeNorm]);
|
drw_setscheme(drw, scheme[SchemeNorm]);
|
||||||
drw_rect(drw, x, 0, w, bh, 1, 1);
|
drw_rect(drw, x, 0, w, bh, 1, 1);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
drw_map(drw, m->barwin, 0, 0, m->ww - stw, bh);
|
drw_map(drw, m->barwin, 0, 0, m->ww - stw, bh);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1625,31 +1625,6 @@ quit(const Arg *arg)
|
|||||||
running = 0;
|
running = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
quitprompt(const Arg *arg)
|
|
||||||
{
|
|
||||||
FILE *pp = popen("echo \"no\nrestart\nyes\" | dmenu -i -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)
|
||||||
{
|
{
|
||||||
@@ -2118,6 +2093,8 @@ sigdwmblocks(const Arg *arg)
|
|||||||
void
|
void
|
||||||
spawn(const Arg *arg)
|
spawn(const Arg *arg)
|
||||||
{
|
{
|
||||||
|
if (arg->v == dmenucmd)
|
||||||
|
dmenumon[0] = '0' + selmon->num;
|
||||||
if (fork() == 0) {
|
if (fork() == 0) {
|
||||||
if (dpy)
|
if (dpy)
|
||||||
close(ConnectionNumber(dpy));
|
close(ConnectionNumber(dpy));
|
||||||
@@ -2886,9 +2863,6 @@ 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