aboutsummaryrefslogtreecommitdiff
path: root/xmonad.hs
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-05-23 11:57:34 +0200
committerCharles <sircharlesaze@gmail.com>2020-05-23 11:57:34 +0200
commit3a70f9f76654ff63e3242cf3324cc77c44e1980f (patch)
tree502ad946de311e7d6cfec1a50ef6c8a932cf3a7e /xmonad.hs
parent718e7ea6e19717c67060648b366dcbbc837535e3 (diff)
parent1eab52cfcbcc9f510d1f5c6c1bcdd5b359971c2b (diff)
downloaddotfiles-3a70f9f76654ff63e3242cf3324cc77c44e1980f.tar.gz
dotfiles-3a70f9f76654ff63e3242cf3324cc77c44e1980f.tar.bz2
dotfiles-3a70f9f76654ff63e3242cf3324cc77c44e1980f.zip
Merge remote-tracking branch 'origin/carbon'
Diffstat (limited to 'xmonad.hs')
-rw-r--r--xmonad.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmonad.hs b/xmonad.hs
index 72bda69..f409cc0 100644
--- a/xmonad.hs
+++ b/xmonad.hs
@@ -32,8 +32,8 @@ myLayouts = tiledBigMaster -- bigger master for code and smaller slave fo
tiledEven = Tall 1 (3 / 100) (1 / 2)
myStartupHook = do
- spawnOnce "redshift -c /home/charles/.config/redshift.conf &" -- start redshift
spawnOnce "xinput disable 'ETPS/2 Elantech Touchpad' &" -- disable touchpad
+ -- spawnOnce "redshift -c /home/charles/.config/redshift.conf &" -- start redshift
myManageHook = insertPosition End Newer -- insert new window at the end of the current layout
@@ -42,4 +42,5 @@ myKeys = [ ("<XF86AudioRaiseVolume>", spawn "pulseaudio-ctl up") -- volume u
, ("<XF86AudioMute>", spawn "pulseaudio-ctl mute") -- volume mute
, ("<XF86MonBrightnessUp>", spawn "xbacklight -inc 5") -- backlight up
, ("<XF86MonBrightnessDown>", spawn "xbacklight -dec 5") -- backlight down
+ , ("<XF86ScreenSaver>", spawn "slock") -- lock screen
]