1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-12 18:00:45 +01:00

11 lines
125 B
Plaintext
Raw Normal View History

#!/bin/bash
status="$(sudo tvservice -n 2>&1)"
if [ "$status" == "[E] No device present" ];
then
exit 1
else
exit 0
fi