10 lines
233 B
Bash
10 lines
233 B
Bash
|
#! /usr/bin/env bash
|
||
|
|
||
|
# Sleep for a while because crap wifi coverage at office so network connection takes ages to come online
|
||
|
sleep 5
|
||
|
|
||
|
while true; do
|
||
|
git pull
|
||
|
mpv --shuffle --ytdl-format="bestaudio" --playlist=playlist.txt
|
||
|
done
|