28 lines
604 B
Bash
Executable file
28 lines
604 B
Bash
Executable file
#!/bin/bash
|
|
|
|
tv_on() {
|
|
cec-ctl --to 0 --image-view-on
|
|
#xrandr --output HDMI-A-0 --mode 1920x1080
|
|
xrandr --output HDMI-A-0 --auto; sleep 3; xrandr --output HDMI-A-0 --mode 1920x1080
|
|
echo "on">~/scripts/PJ/tv_state
|
|
curl -X POST -d '' $REPORT_TV_ON
|
|
}
|
|
|
|
tv_off() {
|
|
cec-ctl --to 0 --standby
|
|
echo "off">~/scripts/PJ/tv_state
|
|
curl -X POST -d '' $REPORT_TV_OFF
|
|
}
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
source "$ROOT/.env"
|
|
if [[ -z "$1" ]]; then
|
|
if grep -q off ~/scripts/PJ/tv_state; then
|
|
tv_on
|
|
else
|
|
tv_off
|
|
fi
|
|
elif [[ $1 = "on" ]]; then
|
|
tv_on
|
|
elif [[ $1 = "off" ]]; then
|
|
tv_off
|
|
fi
|