From 4666c8955e6c67fd363e3f9aec6d503ad75070aa Mon Sep 17 00:00:00 2001 From: Solomon Laing Date: Tue, 30 Mar 2021 17:27:51 +1030 Subject: [PATCH] minor changes, using dmenu over rofi now --- .config/fish/fish_variables | 2 +- .xmonad/xmonad.hs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/fish/fish_variables b/.config/fish/fish_variables index dd015fa..a7a01a4 100644 --- a/.config/fish/fish_variables +++ b/.config/fish/fish_variables @@ -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/ diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 37c3565..e638445 100644 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -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)