Compare commits
2 Commits
1b07dcea96
...
cd79c9bf41
Author | SHA1 | Date | |
---|---|---|---|
cd79c9bf41 | |||
66ad34b81a |
@ -2,3 +2,4 @@ update-cache
|
|||||||
add ~/music
|
add ~/music
|
||||||
|
|
||||||
colorscheme zenburn
|
colorscheme zenburn
|
||||||
|
set softvol
|
||||||
|
@ -34,6 +34,7 @@ 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"
|
||||||
@ -49,7 +50,7 @@ darkGrey = "#262626"
|
|||||||
-- scratchpads
|
-- scratchpads
|
||||||
myScratchpads :: [NamedScratchpad]
|
myScratchpads :: [NamedScratchpad]
|
||||||
myScratchpads =
|
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 "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))
|
||||||
@ -175,6 +176,7 @@ 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")
|
||||||
|
@ -188,6 +188,7 @@ 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")
|
||||||
|
Loading…
Reference in New Issue
Block a user