Scrot: Add a warning when the scrot directory doesn't exist

This commit is contained in:
Dylan Araps 2016-11-25 10:29:05 +11:00
parent aa6843048f
commit 02143b4323
1 changed files with 6 additions and 1 deletions

View File

@ -2258,7 +2258,12 @@ to_off() {
# SCREENSHOT
take_scrot() {
$scrot_cmd "${scrot_dir}${scrot_name}"
if [[ -d "$scrot_dir" ]]; then
$scrot_cmd "${scrot_dir}${scrot_name}"
else
printf "%s\n" "Screenshot: $scrot_dir doesn't exist. Edit the config file or create the directory to take screenshots."
fi
[[ "$scrot_upload" == "on" ]] && scrot_upload
}