PJ/cec.sh

24 lines
373 B
Bash
Raw Normal View History

2024-12-26 15:19:33 -08:00
#!/bin/bash
tv_on() {
cec-ctl --to 0 --image-view-on
echo "on">~/scripts/PJ/tv_state
}
tv_off() {
cec-ctl --to 0 --standby
echo "off">~/scripts/PJ/tv_state
}
if [[ -z "$1" ]]; then
if grep -q off ~/scripts/PJ/tv_state; then
tv_on
elif grep -q on ~/scripts/PJ/tv_state; then
tv_off
fi
elif [[ $1 = "on" ]]; then
tv_on
elif [[ $1 = "off" ]]; then
tv_off
fi