From 4b4aadbf62b313b62fec9890caad10949e800129 Mon Sep 17 00:00:00 2001 From: Sebastian Moser Date: Mon, 3 Jun 2024 21:15:10 +0200 Subject: [PATCH] xmonad added keyboard shortcut for flameshot --- misc/xmonad.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/misc/xmonad.hs b/misc/xmonad.hs index 23336e4..c18d061 100644 --- a/misc/xmonad.hs +++ b/misc/xmonad.hs @@ -95,6 +95,9 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $ ((modm , xK_d), spawn "xrandr --output eDP-1 --auto"), + -- launch mshot + ((modm .|. shiftMask, xK_m), spawn "mshot"), + -- launch dmenu ((modm, xK_p ), spawn "nice -n 7 rofi -show run"),