blob: 088c1b1505bd5bc8fa8c3e9aac7dc6232b1b9b29 (
plain) (
tree)
|
|
#!/bin/bash
case $1 in
selected-region)
# Take a screenshot of the selected region
grim -t jpeg -g "$(slurp)" ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg
;;
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="$(lswt -j | jq -c '.[] | select(.activated) | .outputs' | awk -F'[""
]' '{print $2}')"
grim -o $output -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg
;;
esac
|