commit e1a85e91752f2dc5e423d03cad9e43c8910c82f0
parent 4991fe203e919500afd3b246351c11ee167d9582
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Sun, 23 Dec 2018 19:19:55 +0100
Remove notify-send
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/links/bin/displayselect b/links/bin/displayselect
@@ -1,4 +1,5 @@
#!/usr/bin/env bash
+set -v
# A UI for detecting and selecting all displays.
# Probes xrandr for connected displays and lets user select one to use.
@@ -70,7 +71,6 @@ allposs=$(xrandr -q | grep "connected")
# Get all connected display devices
screens=$(echo "$allposs" | grep " connected" | awk '{print $1}')
-notify-send "<b>Connected displays:</b> $screens"
# Get user choice including multi-monitor and manual selection:
if [ $(echo "$screens" | wc -l) -gt 1 ]; then