diff --git a/neofetch b/neofetch index 0189a1a0..29cbab24 100755 --- a/neofetch +++ b/neofetch @@ -2490,10 +2490,7 @@ get_song() { # Display Artist, Album and Title on separate lines. if [[ "$song_shorthand" == "on" && "$song" ]]; then - artist="${song/ ‡*}" - album="${song#*‡ }" - album="${album% ‡*}" - song="${song/*‡}" + LC_ALL="$sys_locale" IFS="‡" read -r artist album song <<< "$song" [[ "$(trim "$artist")" ]] && prin "Artist" "$artist" [[ "$(trim "$album")" ]] && prin "Album" "$album"