From 617d9c5318bedac87f4a6491a0a886305db0c1c0 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Fri, 16 Feb 2024 23:48:20 +0100 Subject: [PATCH] xmonad: Run rofi-pass to fill in passwords --- modules/wm/xmonad/config.hs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/wm/xmonad/config.hs b/modules/wm/xmonad/config.hs index 815f302..cbc358d 100644 --- a/modules/wm/xmonad/config.hs +++ b/modules/wm/xmonad/config.hs @@ -47,9 +47,11 @@ myConfig = ewmhFullscreen $ ewmh $ Docks.docks $ def , ("M-C-s", unGrab *> spawn "scrot -s") , ("M-b", sendMessage Docks.ToggleStruts) , ("M-p", spawn appLauncher) + , ("M-i", spawn passLauncher) ] where appLauncher = "rofi -show combi -modes combi -combi-modes window,drun,run,ssh" + passLauncher = "rofi-pass" -- myManageHook :: ManageHook