From e5f2ad130d2d46002f5dac6fb6c9b6c033662590 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Thu, 26 Mar 2020 22:02:20 -0400 Subject: [PATCH] ADD dummy keymap for dunst --- bin/xmonad.hs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bin/xmonad.hs b/bin/xmonad.hs index d73520d..07fe430 100644 --- a/bin/xmonad.hs +++ b/bin/xmonad.hs @@ -630,6 +630,15 @@ mkKeys hs client c = , ("", "volume mute", runVolumeMute) ] ++ + -- dummy map for dunst commands (defined separately but this makes them show + -- up in the help menu) + mkNamedSubmap c "Dunst" + [ ("M-`", "dunst history", return ()) + , ("M-S-`", "dunst close", return ()) + , ("M-M1-`", "dunst context menu", return ()) + , ("M-C-`", "dunst close all", return ()) + ] ++ + mkNamedSubmap c "System" [ ("M-.", "backlight up", runIncBacklight) , ("M-,", "backlight down", runDecBacklight)