From 9bee2d9c57e3866351672891c60aa47e8bd2c8de Mon Sep 17 00:00:00 2001 From: Alexis Jhon Gaspar Date: Thu, 12 Oct 2023 21:11:50 +0800 Subject: [PATCH] Added history clear dunst to keybind --- dwm-flexipatch/config.def.h | 1 + 1 file changed, 1 insertion(+) diff --git a/dwm-flexipatch/config.def.h b/dwm-flexipatch/config.def.h index dc4dec9..ca61630 100644 --- a/dwm-flexipatch/config.def.h +++ b/dwm-flexipatch/config.def.h @@ -939,6 +939,7 @@ static const Key keys[] = { /* dunst specific keybinds */ { Mod4Mask, XK_n, spawn, SHCMD("dunstctl history-pop") }, { Mod4Mask, XK_x, spawn, SHCMD("dunstctl close-all") }, + { Mod4Mask|ShiftMask, XK_x, spawn, SHCMD("dunstctl history-clear") }, /* install paplay, dunst, and the scripts on scripts/dunst first */ { Mod4Mask, XK_u, spawn, SHCMD("volume-dunst up") }, { Mod4Mask, XK_d, spawn, SHCMD("volume-dunst down") },