7 lines
277 B
Bash
7 lines
277 B
Bash
#!/bin/bash
|
|
# One-shot: set DSI-1 (reTerminal DM) rotation to Right, then remove self. Runs as user pi at first login.
|
|
export DISPLAY=:0
|
|
sleep 5
|
|
kscreen-doctor output.DSI-1.rotation.right
|
|
rm -f /home/pi/.config/autostart/set-rotation-once.desktop /home/pi/set-rotation-once.sh
|