diff options
Diffstat (limited to 'gui')
-rw-r--r-- | gui/conf/xmonad.hs | 1 | ||||
-rw-r--r-- | gui/xmonad.nix | 6 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index cab108a..cc23718 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -82,6 +82,7 @@ customKeybindings = , ("M-<Space>" , spawn "rofi -show combi") , ("M-<Return>" , spawn "kitty") , ("M-S-<Return>" , spawn "nvim-qt") + , ("<Print>" , spawn "xfce4-screenshooter") -- window management , ("M-q" , windows $ shift "NSP") , ("M-S-q" , kill) diff --git a/gui/xmonad.nix b/gui/xmonad.nix index 31f5832..231240f 100644 --- a/gui/xmonad.nix +++ b/gui/xmonad.nix @@ -23,9 +23,11 @@ }; }; - home.packages = [ + home.packages = with pkgs; [ # lockscreen - pkgs.i3lock + i3lock + # screenshooter + xfce4-12.xfce4-screenshooter ]; services.screen-locker = { |