From 6118be148a9f93e2f191a4f06a44d454b141dfd3 Mon Sep 17 00:00:00 2001 From: Derek Taylor Date: Thu, 28 Feb 2019 21:56:59 -0600 Subject: [PATCH] modified: ../../qtile/config.py modified: ../vifmrc modified: ../../../.xmonad/xmonad.hs modified: ../../../dwm/config.h --- .config/qtile/config.py | 2 +- .config/vifm/vifmrc | 3 +++ .xmonad/xmonad.hs | 8 ++++---- dwm/config.h | 2 +- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.config/qtile/config.py b/.config/qtile/config.py index c056fc7..0fb78af 100755 --- a/.config/qtile/config.py +++ b/.config/qtile/config.py @@ -575,7 +575,7 @@ def init_mouse(): if __name__ in ["config", "__main__"]: mod = "mod4" # Sets mod key to SUPER/WINDOWS - myTerm = "urxvtc" # My terminal of choice + myTerm = "st" # My terminal of choice myConfig = "/home/dt/.config/qtile/config.py" # Qtile config file location colors = init_colors() diff --git a/.config/vifm/vifmrc b/.config/vifm/vifmrc index ce7e77f..349f74a 100644 --- a/.config/vifm/vifmrc +++ b/.config/vifm/vifmrc @@ -251,6 +251,9 @@ filextype *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm \ {View in shotwell} \ shotwell, fileviewer *.bmp,*.jpg,*.jpeg,*.png,*.gif,*.xpm + \ vifmimg draw %px %py %pw %ph %c + \ %pc + \ vifmimg clear " Get w3m image previews inside vifm " \ imgt %px %py %pw %ph %c " \ %pc diff --git a/.xmonad/xmonad.hs b/.xmonad/xmonad.hs index 550c5cd..cf18430 100755 --- a/.xmonad/xmonad.hs +++ b/.xmonad/xmonad.hs @@ -210,7 +210,7 @@ myKeys = , ("M-", spawn (myTerminal ++ " -e sh ./scripts/tig-script.sh")) -- Keypad 9 -- Command Line Apps (MOD + SHIFT + KEYPAD 1-9) - , ("M-S-", spawn (myTerminal ++ " -e vifm")) -- Keypad 1 + , ("M-S-", spawn (myTerminal ++ " -e ~/.config/vifm/scripts/vifmrun")) -- Keypad 1 , ("M-S-", spawn (myTerminal ++ " -e htop")) -- Keypad 2 , ("M-S-", spawn (myTerminal ++ " -e cmus")) -- Keypad 3 , ("M-S-", spawn (myTerminal ++ " -e irssi")) -- Keypad 4 @@ -245,12 +245,12 @@ myKeys = , ("", spawn "amixer set Master 5%+ unmute") , ("", spawn "firefox") , ("", safeSpawn "firefox" ["https://www.google.com/"]) - , ("", runOrRaise "thunderbird" (resource =? "thunderbird")) + , ("", runOrRaise "geary" (resource =? "thunderbird")) , ("", runOrRaise "gcalctool" (resource =? "gcalctool")) , ("", spawn "toggleeject") , ("", spawn "scrotd 0") - ] where nonNSP = WSIs (return (\ws -> W.tag ws /= "NSP")) - nonEmptyNonNSP = WSIs (return (\ws -> isJust (W.stack ws) && W.tag ws /= "NSP")) + ] where nonNSP = WSIs (return (\ws -> W.tag ws /= "nsp")) + nonEmptyNonNSP = WSIs (return (\ws -> isJust (W.stack ws) && W.tag ws /= "nsp")) ------------------------------------------------------------------------ ---WORKSPACES diff --git a/dwm/config.h b/dwm/config.h index b6b435b..9e8d676 100755 --- a/dwm/config.h +++ b/dwm/config.h @@ -128,7 +128,7 @@ static Key keys[] = { /* Apps Launched with + + */ - { MODKEY|ShiftMask, XK_KP_End, spawn, CMD("st -e vifm") }, + { MODKEY|ShiftMask, XK_KP_End, spawn, CMD("st -e ~/.config/vifm/scripts/vifmrun") }, { MODKEY|ShiftMask, XK_KP_Down, spawn, CMD("st -e htop") }, { MODKEY|ShiftMask, XK_KP_Page_Down, spawn, CMD("st -e cmus") }, { MODKEY|ShiftMask, XK_KP_Left, spawn, CMD("st -e irssi") },