Compare commits

...

2 Commits

3 changed files with 5 additions and 1 deletions

View File

@ -2,3 +2,4 @@ update-cache
add ~/music
colorscheme zenburn
set softvol

View File

@ -34,6 +34,7 @@ import Control.Concurrent (threadDelay)
-- variables
myTerminal = "alacritty"
myBrowser = "librewolf"
myAlternativeBrowser = "chromium"
myBorderWidth = 1
myModMask = mod4Mask
white = "#dcdccc"
@ -49,7 +50,7 @@ darkGrey = "#262626"
-- scratchpads
myScratchpads :: [NamedScratchpad]
myScratchpads =
[ NS "cmus" "alacritty -n cmus -e cmus" (resource =? "cmus") (customFloating $ W.RationalRect (1/6) (1/6) (4/6) (4/6))
[ NS "cmus" "alacritty -t cmus -e cmus" (title =? "cmus") (customFloating $ W.RationalRect (1/6) (1/6) (4/6) (4/6))
, NS "nnn" "alacritty -t nnn -e run_in_bash n" (title =? "nnn") (customFloating $ W.RationalRect (1/4) (1/6) (2/4) (4/6))
, NS "aerc" "alacritty -t aerc -e aerc" (title =? "aerc") (customFloating $ W.RationalRect (1/10) (1/10) (8/10) (8/10))
, NS "vimwiki" "alacritty -t vimwiki -e run_in_bash vw" (title =? "vimwiki") (customFloating $ W.RationalRect (1/6) (1/6) (2/3) (2/3))
@ -175,6 +176,7 @@ myAdditionalKeys =
-- some shortcuts for prorgrams
, ("M-S-<Return>", spawnShell)
, ("M-b", spawn myBrowser)
, ("M-S-b", spawn myAlternativeBrowser)
-- layout
, ("M-t t", switchToLayout "Tall")

View File

@ -188,6 +188,7 @@ myAdditionalKeys =
-- open terminal
, ("M-S-<Return>", spawnShell)
, ("M-b", spawn "firefox")
, ("M-S-b", spawn "chromium")
-- layout
, ("M-t t", switchToLayout "Tall")