Skip to content

Instantly share code, notes, and snippets.

@noemission
Created October 9, 2024 11:52
Show Gist options
  • Save noemission/1855d72b8ac8819ec38f8c8a94ca082b to your computer and use it in GitHub Desktop.
Save noemission/1855d72b8ac8819ec38f8c8a94ca082b to your computer and use it in GitHub Desktop.
#!/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