mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-10-03 16:51:29 +00:00
song: Fix issues with broken newlines
This commit is contained in:
2
neofetch
2
neofetch
@@ -2470,7 +2470,7 @@ get_song() {
|
||||
*) mpc &>/dev/null && song="$(mpc -f '%artist%\n%album%\n%title%' current)" || return ;;
|
||||
esac
|
||||
|
||||
IFS=$'\n' read -d "" -r artist album title <<< "$song"
|
||||
IFS=$'\n' read -d "" -r artist album title <<< "${song//'\n'/$'\n'}"
|
||||
|
||||
# Make sure empty tags are truly empty.
|
||||
artist="$(trim "$artist")"
|
||||
|
Reference in New Issue
Block a user