11 lines
178 B
Bash
Executable File
11 lines
178 B
Bash
Executable File
#!/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"
|