From b71cdcc218fef868d0fa584f6947ae98bf2c8063 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Fri, 16 Feb 2024 23:14:06 +0100 Subject: [PATCH] xmonad: Run rofi as an appLauncher --- modules/wm/xmonad/config.hs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/wm/xmonad/config.hs b/modules/wm/xmonad/config.hs index 9f77278..815f302 100644 --- a/modules/wm/xmonad/config.hs +++ b/modules/wm/xmonad/config.hs @@ -46,7 +46,10 @@ myConfig = ewmhFullscreen $ ewmh $ Docks.docks $ def , ("M-S-q", restart "xmonad" True) , ("M-C-s", unGrab *> spawn "scrot -s") , ("M-b", sendMessage Docks.ToggleStruts) + , ("M-p", spawn appLauncher) ] + where + appLauncher = "rofi -show combi -modes combi -combi-modes window,drun,run,ssh" -- myManageHook :: ManageHook