song: Better splitting.
This commit is contained in:
parent
acd4c84614
commit
b6f0460b35
5
neofetch
5
neofetch
|
@ -2490,10 +2490,7 @@ get_song() {
|
||||||
|
|
||||||
# Display Artist, Album and Title on separate lines.
|
# Display Artist, Album and Title on separate lines.
|
||||||
if [[ "$song_shorthand" == "on" && "$song" ]]; then
|
if [[ "$song_shorthand" == "on" && "$song" ]]; then
|
||||||
artist="${song/ ‡*}"
|
LC_ALL="$sys_locale" IFS="‡" read -r artist album song <<< "$song"
|
||||||
album="${song#*‡ }"
|
|
||||||
album="${album% ‡*}"
|
|
||||||
song="${song/*‡}"
|
|
||||||
|
|
||||||
[[ "$(trim "$artist")" ]] && prin "Artist" "$artist"
|
[[ "$(trim "$artist")" ]] && prin "Artist" "$artist"
|
||||||
[[ "$(trim "$album")" ]] && prin "Album" "$album"
|
[[ "$(trim "$album")" ]] && prin "Album" "$album"
|
||||||
|
|
Reference in New Issue