You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
328 B
Bash
14 lines
328 B
Bash
#!/bin/bash
|
|
|
|
# If the display is plugged in, change to that.
|
|
# If the display is not plugged in, use the laptop display
|
|
|
|
if [ $1 == 1 ]
|
|
then
|
|
xrandr --output VGA-1 --auto --primary --output LVDS-1 --off
|
|
else
|
|
xrandr --output LVDS-1 --auto --primary --output VGA-1 --off
|
|
fi
|
|
|
|
feh --bg-scale ~/pictures/wallpapers/mist_forrest.jpg
|