mirror of
https://github.com/BlackLight/cutiepi-rotation-scripts.git
synced 2024-11-23 20:25:11 +01:00
14 lines
359 B
Bash
Executable file
14 lines
359 B
Bash
Executable file
#!/bin/bash
|
|
|
|
script_dir="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
|
source "$script_dir/cutiepi-screen-common"
|
|
|
|
cur_rotation=$(screen_rotation)
|
|
|
|
case "$cur_rotation" in
|
|
left) screen_set_vertical;;
|
|
right) screen_set_vertical_inverted;;
|
|
normal) screen_set_horizontal_inverted;;
|
|
inverted) screen_set_horizontal;;
|
|
esac
|
|
|