summaryrefslogtreecommitdiff
path: root/home/wayland/niri/binds.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/wayland/niri/binds.nix')
-rw-r--r--home/wayland/niri/binds.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/home/wayland/niri/binds.nix b/home/wayland/niri/binds.nix
index aea36e7..53d2d4e 100644
--- a/home/wayland/niri/binds.nix
+++ b/home/wayland/niri/binds.nix
@@ -42,17 +42,17 @@
# Screenshot (selection -> copy + save)
"Mod+S".action = spawn "sh" "-c"
''
- filename="/media/ss/$(date +%Y-%m-%d_%H-%M-%S).png"
+ filename="/media/pics/ss/$(date +%Y-%m-%d_%H-%M-%S).png"
grim -g "$(slurp)" - | tee "$filename" | wl-copy
'';
# Screenshot (selection -> save -> edit with satty -> copy edited)
"Mod+Shift+S".action = spawn "sh" "-c"
''
- filename="/media/ss/$(date +%Y-%m-%d_%H-%M-%S).png"
+ filename="/media/pics/ss/$(date +%Y-%m-%d_%H-%M-%S).png"
grim -g "$(slurp)" "$filename"
- edited="/media/ss/$(date +%Y-%m-%d_%H-%M-%S)-edited.png"
+ edited="/media/pics/ss/$(date +%Y-%m-%d_%H-%M-%S)-edited.png"
satty --filename "$filename" --output-filename "$edited"
'';