1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-15 19:30:54 +01:00

11 lines
125 B
Bash
Executable File

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