diff options
author | Adrian Kummerlaender | 2019-01-25 21:52:46 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2019-01-31 20:36:04 +0100 |
commit | 65b564ba723d16b60dd7cd6abf4520f775035d27 (patch) | |
tree | b58e8ed6e32f25a305cc167ed6864d651061b669 | |
parent | 8f7dac29c3e1d10961dae00a80733f1fb92fd778 (diff) | |
download | nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.gz nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.bz2 nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.lz nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.xz nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.tar.zst nixos_home-65b564ba723d16b60dd7cd6abf4520f775035d27.zip |
Replace xfce4-screenshooter with flameshot
-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; } |