This commit is contained in:
2025-09-25 18:43:27 +02:00
parent 0ee635bd2a
commit f0f1818917
4 changed files with 440 additions and 8 deletions

12
channel Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Simple wrapper script for changing channels
# Usage: ./channel [channel_number] or ./channel (for random)
# Default to random if no argument provided
if [ $# -eq 0 ]; then
echo "Changing to random channel..."
python3 change_channel.py
else
echo "Changing to channel $1..."
python3 change_channel.py "$1"
fi