distribution/packages/sysutils/system-utils/sources/devices/RK3566-X55/video_sense
2023-08-08 13:11:34 +00:00

14 lines
424 B
Bash

#!/bin/bash
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2023-present Fewtarius
. /etc/profile
NATIVE_ROTATION="$(awk 'match ($0, /fbcon=rotate:[0-3]/) {print substr($0, RSTART + 13, 1)}' /flash/extlinux/extlinux.conf)"
if [[ "$(cat ${HDMI_PROP})" =~ ${HDMI_PATTERN} ]]
then
echo 0 >/sys/devices/virtual/graphics/fbcon/rotate
else
echo ${NATIVE_ROTATION} >/sys/devices/virtual/graphics/fbcon/rotate
fi