Page 1 of 1

Lyric sources updated

Posted: Tue Oct 27, 2020 10:45 pm
by anonbeat
I have been last few days testing and fixing the lyrics sources. The changes are at https://raw.githubusercontent.com/anonb ... ources.xml
If you want to replace your actual lyrics sources you must download the file at github and put it into your ~/.guayadeque folder.

Code: Select all

cd /tmp
wget https://raw.githubusercontent.com/anonbeat/guayadeque/master/defconfig/lyrics_sources.xml
mv lyrics_sources.xml ~/.guayadeque/
cd

Re: Lyric sources updated

Posted: Mon Dec 21, 2020 4:42 pm
by FinFin
THX!
Works like a charm

Re: Lyric sources updated

Posted: Mon Mar 01, 2021 6:16 pm
by ontologger
Hi,

I have created a small script to merge changes without overwriting custom lyrics sources: https://github.com/openmonk/guayadeque- ... mergels.py

You can use it as follows:

Code: Select all

# get new lyrics_sources.xml
cd /tmp
wget https://raw.githubusercontent.com/anonbeat/guayadeque/master/defconfig/lyrics_sources.xml

# get the script
wget https://raw.githubusercontent.com/openmonk/guayadeque-scripts/main/guayadeque-mergels.py
chmod +x guayadeque-mergels.py

# backup
cp ~/.guayadeque/lyrics_sources.xml ~/.guayadeque/lyrics_sources.xml.bk

# merge the config
./guayadeque-mergels.py /tmp/lyrics_sources.xml > merged_lyrics_sources.xml
cp merged_lyrics_sources.xml ~/.guayadeque/lyrics_sources.xml

Re: Lyric sources updated

Posted: Mon Mar 01, 2021 8:48 pm
by anonbeat
Other option is to publish the custom source and share it so others can use it... Maybe also add it to default ones.

Thanks for your help