home/bin/screenshooter.sh
2021-01-24 15:16:13 +01:00

8 lines
186 B
Bash
Executable File

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