Created
August 22, 2015 16:43
-
-
Save andykais/85430dc699d42a104605 to your computer and use it in GitHub Desktop.
used for setting up multiple monitors
This file contains hidden or 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 | |
xrandr -q | grep 'connected' | awk '{print $1}' | while read line | |
do | |
if [ "$line" != "LVDS1" ] | |
then | |
xrandr --output $line --left-of LVDS1 --auto | |
fi | |
done | |
feh --bg-fill $(cat /home/andrew/bin/slideshow_latest.txt) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment