fakeTV/fakeTV.sh

19 lines
485 B
Bash
Raw Normal View History

2023-10-13 02:35:04 -04:00
#!/bin/bash
#vars
#The channel bug that displays while the channel is playing episodes
buglocation="/media/zella/anime/aaeachannelbug.png"
#The playlist location
playlist="/media/zella/anime/playlist.m3u"
#the python script location
pyscript="/media/zella/anime/fakeTV.py"
while(true); do
python $pyscript
clear
DISPLAY=:0 cvlc -q --fullscreen --play-and-exit --sub-source logo --logo-position 10 --logo-opacity=128 --logo-file $buglocation --no-osd $playlist 2> /dev/null
2023-10-13 02:35:04 -04:00
done