Si te topas con este problema de que AMSN no muestra lo que escuchas cuando usas este reproductor entonces debes editar el plugin de Audacious directamente asi ve al directorio de tu usuario busca la carpeta oculta llamada amsn seria asi .amsn ahora busca la carpeta plugins y luego music selecciona el archivo llamado infoaudacious(La ruta puede variar a /usr/share/amsn) y lo abres con el editor de texto de tu preferencia ahora tendras esto:

#! /bin/sh
# Shell script to get informations about the current song playing in Audacious
#Audacious is launched ?
STATUS=$(audtool playback-status)
VERSION=$(audtool get-version)
if [ $? = 0 ]
then
echo $STATUS
MAJ=`expr substr ${VERSION#A*\ } 1 1`
MIN=`expr substr ${VERSION#A*\ } 3 1`

if [ "$MAJ" -eq "1" -a "$MIN" -ge "4" ] || [ "$MAJ" -gt "1" ]
then
#To force \n when there isn’t any information
echo $(audtool current-song-tuple-data title)
echo $(audtool current-song-tuple-data artist)
else
#To force \n when there isn’t any information
echo $(audtool current-song-tuple-data track_name)
echo $(audtool current-song-tuple-data performer)
fi
audtool current-song-filename
else
echo 0
fi
exit 0

Para efectos practicos borra todo el code y copia el siguiente

#! /bin/sh
# Shell script to get informations about the current song playing in Audacious

#Audacious is launched ?
STATUS=$(audtool playback-status)
if [ $? = 0 ]
then
echo $STATUS
#To force \n when there isn’t any information
#echo $(audtool current-song-tuple-data track_name)
#echo $(audtool current-song-tuple-data performer)
echo $(audtool current-song)
else
echo 0
fi

exit 0

Guarda y reinicia el amsn, ahora ya debe funcionar perfectamente el plugin con este exelente reproductor de musica.

Leave a Reply

Todo el contenido expuesto en el Blog puede ser copiado y modificado sin ningun problema un saludo!