diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-22 22:29:46 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-22 22:29:46 +0100 |
| commit | 4cd7fa7d212d11a40b20f21cbfcd74f5863ce23a (patch) | |
| tree | 10dff49a28788bfb8bbabf4fa380de817352767c /xmonad.hs | |
| parent | 9a57b5a5bb5c48bc76bc10c9cbc0809019d91e61 (diff) | |
| parent | abe2b612c9f672039894766e72fbba356c7bcfdc (diff) | |
| download | dotfiles-4cd7fa7d212d11a40b20f21cbfcd74f5863ce23a.tar.gz dotfiles-4cd7fa7d212d11a40b20f21cbfcd74f5863ce23a.tar.bz2 dotfiles-4cd7fa7d212d11a40b20f21cbfcd74f5863ce23a.zip | |
Merge remote-tracking branch 'origin/carbon'
Diffstat (limited to 'xmonad.hs')
| -rw-r--r-- | xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -24,7 +24,7 @@ main = xmonad $ desktopConfig , focusedBorderColor = "#bbc5ff" , terminal = "st" , layoutHook = myLayouts - , manageHook = myManageHook + , manageHook = myManageHook , modMask = mod4Mask -- mod key to super , borderWidth = 1 , focusFollowsMouse = False -- don't change window based on mouse position (need to click) @@ -50,6 +50,7 @@ myKeys = [ ("<XF86AudioRaiseVolume>", spawn "~/bin/volume-ctl up") , ("M-o", spawn "~/bin/project-open") , ("M-m", spawn "st -e mocp") , ("M-S-d", spawn "notify-send \"$(date +\"%H:%M %A %d/%m/%Y %B\")\"") + , ("M-S-b", spawn "notify-send \"battery: $(cat /sys/class/power_supply/BAT0/capacity)\"") , ("M-q", spawn "notify-send Restart" >> spawn restartCmd) , ("M-S-q", confirm "Are you sure you want to shutdown?" $ io (exitWith ExitSuccess)) ] |
