applied more kernel patches, changed super resolution modes to normal modes

This commit is contained in:
lucca
2026-09-21 06:24:13 -04:00
parent 30c406f8c4
commit bbe7f72f36
6 changed files with 47 additions and 16 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/bin/bash
# Toggle between crtTV240 and crtTV240ra each time this script is run
source ~/.profile 2>/dev/null || true
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
STATE_FILE="$SCRIPT_DIR/.crt_tv_toggle"
if [[ -f "$STATE_FILE" && $(cat "$STATE_FILE") == "ra" ]]; then
crtTV
echo "normal" > "$STATE_FILE"
else
crtTVscale
echo "ra" > "$STATE_FILE"
fi