home/Bin/screenshooter.sh

8 lines
174 B
Bash
Raw Normal View History

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