Compare commits

..

No commits in common. "cd79c9bf415f95aafcfb47bc00b2fe0a32103b62" and "1b07dcea969d85a4a96f61f5d06d08ca8e41628c" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

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

View File

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

View File

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