Created
May 18, 2018 09:16
-
-
Save girisagar46/bdfaecaee53d18d9844d3b047d4effb4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
screens=$(xrandr | grep -c ' connected ') | |
echo "found $screens displays" | |
if [ "$screens" = 1 ]; then | |
gsettings set org.cinnamon panels-enabled "['1:0:bottom']" | |
else | |
gsettings set org.cinnamon panels-enabled "['1:1:bottom']" | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment