scrot: Fix custom command not accepting arguments.

This commit is contained in:
Dylan Araps 2017-08-28 09:30:19 +10:00
parent 0a1037f16e
commit bad43ac17e
1 changed files with 2 additions and 2 deletions

4
neofetch Executable file → Normal file
View File

@ -2857,8 +2857,8 @@ scrot_program() {
# We first check to see if an X server is running before
# falling back to OS specific screenshot tools.
if [[ -n "$DISPLAY" ]]; then
if [[ "$scrot_cmd" != "auto" ]] && type -p "$scrot_cmd" >/dev/null; then
scrot_program=("$scrot_cmd")
if [[ "$scrot_cmd" != "auto" ]] && type -p "${scrot_cmd%% *}" >/dev/null; then
scrot_program=($scrot_cmd)
elif type -p maim >/dev/null; then
scrot_program=(maim)