trivial spotify script..

I use this little script for my stream set up at live.shrik3.com

It does two things:

  • print the current song, and the most recent n songs in the terminal
  • log all the played songs to a file

Note: needs spotify-cli as dependency

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/bash

clear

LOG_PATH="/PATH/TO/LOG/FILE"


INFO=$(spotifycli --status)

black=`tput setaf 0`
red=`tput setaf 1`
green=`tput setaf 2`
white_bg=`tput setab 7`
bold=`tput bold`
reset=`tput sgr0`


# spotifycli --status >> /dev/tty

tail -n 8 $LOG_PATH
echo "${black}${white_bg}${bold} >>> $(spotifycli --status) ${reset}"

while :
do 

    INFO1=$(spotifycli --status)
    if [ "$INFO" != "$INFO1" ]; then   
        clear
        printf "\n"
        tail -n 8 $LOG_PATH
        INFO=$(spotifycli --status)
        printf "\n"

        # spotifycli --status >> /dev/tty

        # echo "${red}${white_bg}${bold} >>> $(spotifycli --status) ${reset}"
        echo "${red}${bold} >>> $(spotifycli --status) ${reset}"

        spotifycli --status >> $LOG_PATH
    fi
    sleep 1


done
created 01.02.2023
EOF
[+] click to leave a comment [+]
the comment system on this blog works via email. The button
below will generate a mailto: link based on this page's url 
and invoke your email client - please edit the comment there!

[optional] even better, encrypt the email with my public key

- don't modify the subject field
- specify a nickname, otherwise your comment will be shown as   
  anonymous
- your email address will not be disclosed
- you agree that the comment is to be made public.
- to take down a comment, send the request via email.

>> SEND COMMENT <<