From dba873a10dcb86f8e13470522a25c0adcc8120a5 Mon Sep 17 00:00:00 2001 From: randomuser Date: Mon, 26 Apr 2021 11:08:40 -0500 Subject: [PATCH] add verbosity --- scripts/disp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/disp b/scripts/disp index d8ef095..23b039f 100755 --- a/scripts/disp +++ b/scripts/disp @@ -5,6 +5,7 @@ exists() { } if [ $(exists "HDMI2") -eq 1 ] && [ $(exists "LVDS1") -eq 1 ]; then + printf "HDMI2, LVDS1 exists\n" xrandr --output LVDS1 --below HDMI2 --auto bspc monitor LVDS1 I II III IV V bspc monitor HDMI2 VI VII VIII IX @@ -12,11 +13,13 @@ if [ $(exists "HDMI2") -eq 1 ] && [ $(exists "LVDS1") -eq 1 ]; then fi if [ $(exists "HDMI1") -eq 1 ] && [ $(exists "LVDS1") -eq 1 ]; then + printf "HDMI1, LVDS1 exists\n" xrandr --output LVDS1 --below HDMI1 --auto bspc monitor LVDS1 I II III IV V bspc monitor HDMI1 VI VII VIII IX exit 0 fi +printf "defaulting to default configuration\n" bspc monitor -d I II III IV V VI VII VIII IX X exit 0