diff options
-rw-r--r-- | gui/conf/xmonad.hs | 2 | ||||
-rw-r--r-- | gui/xmonad.nix | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gui/conf/xmonad.hs b/gui/conf/xmonad.hs index da1859e..b64d561 100644 --- a/gui/conf/xmonad.hs +++ b/gui/conf/xmonad.hs @@ -145,7 +145,7 @@ commonKeybindings host = , ("M-<Space>" , spawn "rofi -show combi") , ("M-<Return>" , spawn "kitty") , ("M-S-<Return>" , spawn "nvim-qt --no-ext-tabline") - , ("<Print>" , spawn "xfce4-screenshooter") + , ("<Print>" , spawn "flameshot gui") -- window management , ("M-q" , windows $ S.shift "NSP") , ("M-S-q" , kill) diff --git a/gui/xmonad.nix b/gui/xmonad.nix index 581dff7..3686cd0 100644 --- a/gui/xmonad.nix +++ b/gui/xmonad.nix @@ -26,12 +26,12 @@ home.packages = with pkgs; [ # lockscreen i3lock - # screenshooter - xfce4-12.xfce4-screenshooter ]; services.screen-locker = { enable = true; lockCmd = "${pkgs.i3lock}/bin/i3lock -n -c 000000"; }; + + services.flameshot.enable = true; } |