summaryrefslogtreecommitdiff
path: root/.local/bin/uwushot
blob: 59aed24c5cc1fec6fc0798e005c1795087dbe052 (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash
set -euxo pipefail
DATE=$(date '+%Y%m%d-%H:%M:%S')
path="$HOME/Pictures/Screenshots/"
filename="satty-$DATE.png"
grim -g "$(slurp -o -r -c '#ff0000ff')" -t ppm - | satty --actions-on-right-click=save-to-file --filename - --disable-notifications --corner-roundness 12 --output-filename "$path$filename"
cd "$path"
uwuload "$filename"