Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/xinitrc9
1 files changed, 6 insertions, 3 deletions
diff --git a/scripts/xinitrc b/scripts/xinitrc
index 90927bf..20a2276 100644
--- a/scripts/xinitrc
+++ b/scripts/xinitrc
@@ -13,9 +13,12 @@ OUTPUTS=`scripts/list-outputs`
for output in $OUTPUTS
do
- if [ -z "$FIRST_OUTPUT" ]; then
- FIRST_OUTPUT=$output
- else
+ # Default to the first output in the list
+ if [ -z $SUGAR_OUTPUT ]; then
+ SUGAR_OUTPUT=$output
+ fi
+
+ if [ $SUGAR_OUTPUT != $output ]; then
xrandr --output $output --off
fi
done