Created
October 9, 2024 11:52
-
-
Save noemission/1855d72b8ac8819ec38f8c8a94ca082b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
x=1 | |
while [ $x -le 20 ] | |
do | |
# Replace with volumio's ip | |
chromium "http://192.168.1.10:4004" --kiosk | |
x=$(( $x + 1 )) | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment