Is there a way to rotate the unihiker screen?
trying to use Tkinter with unihiker, but would rather have a 320x240 screen instead.
Is there a way to rotate the entire screen? tried using xrandr but couldn't make it work.
2024-12-04 22:24:45
Check the available outputs using:
xrandr --query
If you see an output like DSI-1 or HDMI-1, try:
xrandr --output <OUTPUT_NAME> --rotate left
Replace <OUTPUT_NAME> with your actual display output (e.g., DSI-1).
If xrandr reports no outputs or doesn’t work, move to other methods.
lia.ifat