-
-
Save C0ntr07/3f58965c0460e5db41ffe63631bfc3ee to your computer and use it in GitHub Desktop.
Enable and disable the HDMI port on the Raspberry Pi: `rpi-hdmi on` to turn on, `rpi-hdmi off` to turn off. X is properly reinitialized when re-enabling.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Enable and disable HDMI output on the Raspberry Pi | |
is_off () | |
{ | |
tvservice -s | grep "TV is off" >/dev/null | |
} | |
case $1 in | |
off) | |
tvservice -o | |
;; | |
on) | |
if is_off | |
then | |
tvservice -p | |
curr_vt=`fgconsole` | |
if [ "$curr_vt" = "1" ] | |
then | |
chvt 2 | |
chvt 1 | |
else | |
chvt 1 | |
chvt "$curr_vt" | |
fi | |
fi | |
;; | |
status) | |
if is_off | |
then | |
echo off | |
else | |
echo on | |
fi | |
;; | |
*) | |
echo "Usage: $0 on|off|status" >&2 | |
exit 2 | |
;; | |
esac | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment