mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-12-14 12:37:16 +00:00
Scrot: Add a warning when the scrot directory doesn't exist
This commit is contained in:
7
neofetch
7
neofetch
@@ -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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user