summaryrefslogtreecommitdiff
path: root/niri/screenshotwayland.sh
blob: 22bacd0c6062373db8f67fb0cd3828e367abe63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash
slurp | grim -g - - | wl-copy
choice=$(printf "save to clipboard\nsave to file" | rofi -dmenu)

case "$choice" in
  "Save to File")
    wl-paste > ~/Pictures/Screenshots/screenshot-$(date +%F_%H-%M-%S).png
    ;;
  *)
    exit 0
    ;;
esac