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