diff options
author | Adrian Kummerlaender | 2019-01-23 22:07:03 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-01-23 22:07:03 +0100 |
commit | a8b399b3941f2df6e357372c4c36ab931e407081 (patch) | |
tree | 4c1a572867ce85335edfd5678b24484d32dda970 /gui | |
parent | a2d664fbbbc2b8983c1e5c74dcdbba8bf06e27f5 (diff) | |
download | nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar.gz nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar.bz2 nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar.lz nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar.xz nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.tar.zst nixos_home-a8b399b3941f2df6e357372c4c36ab931e407081.zip |
Add athena-specific config
It remains to be seen how to integrate highdpi-specific stuff.
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index c1b40b7..bf067f9 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -119,6 +119,16 @@ hostSpecificKeybindings host = case host of , ("M-i c" , showNotification "`acpi --thermal | awk '{print $4}'`°C" "`cat /proc/acpi/ibm/fan | awk '/speed/{print $2}'` RPM") , ("M-c n" , spawn "networkmanager_dmenu") ] + "athena" -> [ ("M-i b" , showNotification "Battery" + "`acpi | cut -c 10-`") + , ("M-i c" , showNotification "`acpi --thermal | awk '{print $4}'`°C" + "`cat /proc/acpi/ibm/fan | awk '/speed/{print $2}'` RPM") + , ("M-c n" , spawn "networkmanager_dmenu") + , ("<XF86MonBrightnessUp>" , spawn "xbacklight -inc 5") + , ("<XF86MonBrightnessDown>" , spawn "xbacklight -dec 5") + , ("<XF86AudioRaiseVolume>" , spawn "amixer sset Master 10%+") + , ("<XF86AudioLowerVolume>" , spawn "amixer sset Master 10%-") + , ("<XF86AudioMute>" , spawn "amixer sset Master toggle") ] "obelix" -> [ ("M-i g" , showNotification "GPU" "`nvidia-smi --query-gpu=name,temperature.gpu,utilization.gpu,utilization.memory --format=csv,noheader | awk -F',' '{print $1 \" running at\" $2 \"°C due to\" $3 \" load and\" $4 \" memory usage\"}'`") ] _ -> [ ] @@ -295,7 +305,9 @@ screenWidthOn host = case host of "obelix" -> 1920 "majestix" -> 1680 "asterix" -> 1366 + "athena" -> 2560 screenHeightOn host = case host of "obelix" -> 1200 "majestix" -> 1050 "asterix" -> 768 + "athena" -> 1440 |