blob: a8f8c09daac2de7d6c6569e949b3c6aab62c4af0 (
plain) (
tree)
|
|
#!/bin/sh
case $1 in
selected-region)
# Take a screenshot of the selected region
grim -t png -g "$(slurp)" ~/Pictures/Screenshots/"$(date +%Y-%m-%d_%H-%m-%s)".png
;;
save-to-clipboard)
# Take a screenshot and save it to the clipboard
grim -g "$(slurp -d)" - | wl-copy
;;
*)
# Take a screenshot of the currently focused output and save it into screenshots
output="$(river-bedload -print outputs | jq -c '.[] | select(.focused) | .name' | awk -F'[""]' '{print $2}')"
grim -o "$output" -t png ~/Pictures/Screenshots/"$(date +%Y-%m-%d_%H-%m-%s)".png
;;
esac
|