dwm
dynamic window manager
git clone https://9o.is/git/dwm.git
commit a8f1cea537b87ff32e93b311ace0d2ff6f3fba10 parent 7962c42fc0a504a631789fb8434015f9cc68bcb4 Author: Jul <jul@9o.is> Date: Sun, 15 Feb 2026 10:09:20 -0500 add custom qubes-clipboard shortcuts Diffstat:
| M | config.h | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/config.h b/config.h @@ -85,6 +85,8 @@ static const char *decvol[] = {"dmenu-volume", "decrement", "10", NULL}; static const char *mutvol[] = {"dmenu-volume", "mute", NULL}; static const char *dmenu_brightness[] = { "dmenu-brightness", NULL }; static const char *pottog[] = { "potctl", "-t", NULL }; +static const char *qubescopy[] = { "qubes-clipboard", "copy", NULL }; +static const char *qubespaste[] = { "qubes-clipboard", "paste", NULL }; #include "shift-tools.c" @@ -94,6 +96,8 @@ static const Key keys[] = { { MODKEY, XK_p, spawn, {.v = dmenu_cmd } }, { MODKEY|ShiftMask, XK_b, spawn, {.v = dmenu_brightness } }, { MODKEY|ShiftMask, XK_Return, spawn, {.v = term_cmd } }, + { ControlMask|ShiftMask, XK_c, spawn, {.v = qubescopy } }, + { ControlMask|ShiftMask, XK_v, spawn, {.v = qubespaste } }, { MODKEY, XK_Return, zoom, {0} }, { MODKEY, XK_Tab, view, {0} }, { MODKEY|Mod1Mask, XK_q, killclient, {0} },