mirror of
https://github.com/OpenVoiceOS/OpenVoiceOS
synced 2025-02-08 16:08:42 +01:00
11 lines
125 B
Bash
Executable File
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
|