dotfiles/.config/qtile-wayland/scripts/screenshot.sh

20 lines
536 B
Bash
Raw Normal View History

2022-04-30 12:49:30 +02:00
#!/bin/bash
home=$(eval echo ~"$USER")
case $1 in
selected-region)
# Take a screenshot of the selected region
grim -t jpeg -g "$(slurp)" "$home"/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 all outputs and save it into screenshots
grim -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg
;;
esac