From efb2439ab82052f6eeb4728d5df774cccb121a8a Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 7 Mar 2020 22:59:24 +0100 Subject: carbon x1 Arch linux config --- xmonad.hs | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'xmonad.hs') diff --git a/xmonad.hs b/xmonad.hs index eb9edb3..6e379cc 100644 --- a/xmonad.hs +++ b/xmonad.hs @@ -6,7 +6,7 @@ import XMonad.Util.SpawnOnce import XMonad.Util.EZConfig(additionalKeysP) myModMask = mod4Mask -myTerminal = "konsole" +myTerminal = "st" myTextEditor = "vim" myBorderWidth = 2 @@ -14,22 +14,14 @@ main = do xmonad $ desktopConfig { modMask = myModMask , terminal = myTerminal - , startupHook = myStartupHook , borderWidth = myBorderWidth , normalBorderColor = "#292d3e" , focusedBorderColor = "#bbc5ff" } `additionalKeysP` myKeys -myStartupHook = do - spawnOnce "redshift -c /home/charles/.config/redshift.conf &" - spawnOnce "xinput disable 'ETPS/2 Elantech Touchpad' &" - myKeys = [ ("", spawn "pulseaudio-ctl up") , ("", spawn "pulseaudio-ctl down") , ("", spawn "pulseaudio-ctl mute") + , ("", spawn "xbacklight -inc 5") + , ("", spawn "xbacklight -dec 5") ] - -- , ("", spawn "playerctl play-pause") - -- , ("", spawn "playerctl previous") - -- , ("", spawn "playerctl next") - -- , ("", spawn "lux -a 5%") - -- , ("", spawn "lux -s 5%") -- cgit