My music library. see library.tsv and any folder for playlists. synced from spotify via ugly autohotkey scripts
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 7 lines 300 B view raw
1#!/usr/bin/env bash 2DELIMITER=: 3artist=$(echo $@ | awk -F"$DELIMITER" '{print $1}' | sed 's/^\s*\|\s*$//g') 4title=$(echo $@ | awk -F"$DELIMITER" '{print $2}' | sed 's/^\s*\|\s*$//g') 5echo Saving $artist$title to library... 6echo -e "$artist\t$title" >> $HOME/music/library.tsv 7$HOME/music/backup