home/bin/screenshooter.sh

8 lines
186 B
Bash
Raw Normal View History

#! /bin/bash
FILENAME="Screenshots-$(date +%Y%m%d-%H%M%S).png"
2020-10-31 18:03:19 +01:00
scrot -q 70 ${FILENAME} -e 'mv $f ~/Pictures/screenshots/'
notify-send -i screenie 'Screenshot!' "Saved as ${FILENAME}"