11 lines
178 B
Bash
11 lines
178 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
dest="$HOME/Screenshots"
|
||
|
|
||
|
# Check to make sure destination directory exists
|
||
|
if [ -d "$dest" ]; then
|
||
|
mkdir -p "$dest"
|
||
|
fi
|
||
|
|
||
|
scrot "%Y%m%d_$wx$h.png" $@ -e "mv $f $dest"
|