mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
17 lines
711 B
Bash
17 lines
711 B
Bash
#!/bin/sh
|
|
FB_TYPE="$(grep '^0 ' /proc/fb | sed 's/[^[:space:]] //')"
|
|
|
|
if [ "$FB_TYPE" == "inteldrmfb" ]; then
|
|
OUTPUT=`/usr/bin/xrandr -display :0 -q | sed '/ connected/!d;s/ .*//;q'`
|
|
for out in $OUTPUT ; do
|
|
# Hack - something is not yet fully right
|
|
/usr/bin/xrandr -display :0 --output $out --set "Broadcast RGB" "Full"
|
|
/usr/bin/xrandr -display :0 --output $out --set "Broadcast RGB" "Video 16:235 pass-through"
|
|
# Seems there is a little race somewhere on some outputs
|
|
# Turn the display shortly off and on again
|
|
if [ -e "/storage/.config/forcedisplay" ]; then
|
|
/usr/bin/xrandr -display :0 --output $out --off ; /usr/bin/xrandr -display :0 --output $out --auto
|
|
fi
|
|
done
|
|
fi
|