13 lines
252 B
Bash
Executable File
13 lines
252 B
Bash
Executable File
#!/bin/sh
|
|
|
|
dest="$HOME/Screenshots"
|
|
|
|
# Check to make sure destination directory exists
|
|
if [ -d "$dest" ]; then
|
|
mkdir -p "$dest"
|
|
fi
|
|
|
|
# Unable to use $dest and still need to figure out why
|
|
scrot '%Y%m%d-%H.%M.%S_$wx$h.png' $@ -e 'mv $f ~/Screenshots'
|
|
|