minor changes, using dmenu over rofi now

This commit is contained in:
Solomon Laing 2021-03-30 17:27:51 +10:30
parent b95f3e1270
commit 4666c8955e
2 changed files with 4 additions and 4 deletions

View File

@ -30,4 +30,4 @@ SETUVAR fish_pager_color_completion:\x1d
SETUVAR fish_pager_color_description:B3A06D\x1eyellow
SETUVAR fish_pager_color_prefix:white\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
SETUVAR fish_user_paths:/home/solomon/\x2escripts/
SETUVAR fish_user_paths:/usr/local/bin\x1e/home/solomon/\x2escripts/

View File

@ -144,13 +144,13 @@ myKeys conf@(XConfig {XMonad.modMask = modm}) = M.fromList $
((modm .|. shiftMask, xK_Return), spawn $ XMonad.terminal conf)
-- launch rofi
, ((modm, xK_a ), spawn "rofi -show run")
, ((modm, xK_o ), spawn "rofi -show run")
-- launch dmenu
, ((modm, xK_o ), spawn "dmenu_run")
, ((modm, xK_a ), spawn "dmenu_run")
-- launch rofi ssh
, ((modm .|. shiftMask, xK_a ), spawn "rofi -show ssh")
, ((modm .|. shiftMask, xK_o ), spawn "rofi -show ssh")
-- launch my file manager
, ((modm, xK_l ), spawn myFileManager)