#!/bin/bash # SPDX-License-Identifier: GPL-2.0-or-later # Copyright (C) 2023 JELOS (https://github.com/JustEnoughLinuxOS) . /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