12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #!/bin/bash
- version=1.0
- if [[ "$#" -ge 2 ]]; then
- echo "Usage: $0 {-v, --version | -h --help}"
- exit 2
- elif [[ "$#" -eq 1 ]]; then
- case $1 in
- -v | --version)
- echo "$0 - Version $version"
- exit 0;;
- -h | --help)
- echo "This is a simple program that toggles an external monitor on and off using xrandr. This program won't work out of the box. You will have to rename the variables \$Internal and \$External in the script to suit your needs."
- echo "- v, --version Display current version"
- echo "-h, --help Display this message"
- exit 0;;
- *)
- echo "Usage: $0 {-v, --version | -h, --help}"
- exit 2;;
- esac
- fi
- Internal="eDP1"
- External="DP1-3"
- if xrandr | grep "DP1-3 connected" > /dev/null; then
- if [ ! -f "/tmp/monitor_mode.dat" ]; then
- monitor_mode="ON"
- else
- monitor_mode=`cat /tmp/monitor_mode.dat`
- fi
-
- if [ $monitor_mode = "OFF" ]; then
- monitor_mode="ON"
- xrandr -d :0.0 --output $External --auto
- xrandr -d :0.0 --output $Internal --auto
- xrandr -d :0.0 --output $External --right-of $Internal
- if [ -a "/bin/feh" ]; then
- ~/.fehbg
- fi
- else
- monitor_mode="OFF"
- xrandr -d :0.0 --output $External --off
- xrandr -d :0.0 --output $Internal --auto
- fi
- echo "${monitor_mode}" > /tmp/monitor_mode.dat
- fi
|