diff options
author | Adrian Kummerlaender | 2019-05-09 10:43:27 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2019-05-09 10:43:27 +0200 |
commit | 1389221565a903568acd40ec88fdf009b57ad400 (patch) | |
tree | 498c17a16de978871d6d32776ae0f95a7a11797f /gui | |
parent | 5b0649f18ad2b63614f527a9002c1db621afd370 (diff) | |
download | nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar.gz nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar.bz2 nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar.lz nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar.xz nixos_home-1389221565a903568acd40ec88fdf009b57ad400.tar.zst nixos_home-1389221565a903568acd40ec88fdf009b57ad400.zip |
Add alternative screenshot binding for athena
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index 668d818..b064ec7 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -133,7 +133,8 @@ hostSpecificKeybindings host = case host of , ("<XF86AudioRaiseVolume>" , spawn "amixer sset Master 10%+") , ("<XF86AudioLowerVolume>" , spawn "amixer sset Master 10%-") , ("<XF86AudioMute>" , spawn "amixer sset Master toggle") - , ("<Print>" , namedScratchpadAction (scratchpads host) "terminal") ] + , ("<Print>" , namedScratchpadAction (scratchpads host) "terminal") + , ("M-c p" , spawn "flameshot gui") ] "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\"}'`") ] _ -> [ ] |