removed loop from spotify change script

This commit is contained in:
Niklas 2020-06-18 14:31:35 +02:00
parent 6ef4a94508
commit 7f77c59145

View File

@ -1,18 +1,4 @@
#!/usr/bin/env sh #!/usr/bin/env sh
# send ipc to polybar to update # send ipc to polybar to update
polybar-msg hook spotifyd 1
hook (){
polybar-msg hook spotifyd 1
}
i=0
until hook || [ $i -gt 10 ];
do
sleep 1
let i=i+1
done
exit $?