7 lines
174 B
Bash
Executable file
7 lines
174 B
Bash
Executable file
#! /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}"
|