musmenu: fix home abbreviation

This commit is contained in:
lelgenio 2021-03-12 23:39:52 -03:00
parent cce51c94f7
commit 5837b83973
1 changed files with 2 additions and 1 deletions

View File

@ -36,7 +36,8 @@ delete() {
mpc --quiet next
mpc --quiet update
notify-send "Removed Music" "$(echo $answer | sd '$HOME' '~')"
path=$(echo $answer | sd "$HOME" '~')
notify-send "Removed Music" "$path"
fi
}