monitor-setup: Do not discard error message

This commit is contained in:
2022-10-07 05:14:41 +02:00
parent 9e477ff5a4
commit 91a06e6796

View File

@@ -3,8 +3,8 @@
# monitor setup script using xrandr and fzf to manage multiple monitors and/or # monitor setup script using xrandr and fzf to manage multiple monitors and/or
# set resolutions and refresh rates. # set resolutions and refresh rates.
command -v xrandr &>/dev/null || exit 1 command -v xrandr >/dev/null || exit 1
command -v fzf &>/dev/null || exit 1 command -v fzf >/dev/null || exit 1
fzf_args=( --cycle --select-1 --exit-0 --header ) fzf_args=( --cycle --select-1 --exit-0 --header )