10 lines
119 B
Bash
Executable File
10 lines
119 B
Bash
Executable File
#!/bin/bash
|
|
# Output on
|
|
xrandr --output HDMI-0 --auto
|
|
|
|
# Start kodi
|
|
kodi
|
|
|
|
# Tv output off
|
|
xrandr --output HDMI-0 --off
|