1
1
mirror of https://github.com/OpenVoiceOS/OpenVoiceOS synced 2025-02-08 16:08:42 +01:00
2022-01-29 16:04:23 +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