como mostrar en conky lo que reproduce banshee ??

hola señorit@s

hace poco me pase de rhythmbox a banshee.

antes en conky tenia para que saliera la cancion que se reproducia en rhythmbox, con esta linea:

${exec rhythmbox-client --print-playing}


el caso es que no he tenido huevos de averiguar el comando para banshee.. ni siquiera para hacerle un --help xD


alguien sabria echarme una manita?

pd: archlinux, banshee 0.98.3 (el proceso de banshee es banshee-1) ... por si algo es util :P


gracias
Humm
prueba:

{exec banshee --query-title | cut -d : -f2}

PD: lo de : cut -d : -f2 es para quedarme con el titulo solo:

Ademas del titulo tienes bastantes opciones como:

--query-artist Get artist name for current playing song
--query-album Get album name for current playing song
--query-title Get track title for current playing song
--query-genre Get track genre for current playing song
--query-duration Get duration of current playing song in seconds
--query-position Get position of current playing song in seconds
--query-rating Get track rating for current playing song
--query-uri Get URI of current playing song
--query-cover-uri Get URI of the album cover of current playing song
--query-status Get player status (-1: Not loaded, 0: Paused, 1: Playing)

Espero que te sirva de ayuda ^_^
Umm, lo he instalado para probar y la versión que tengo es la 1.0 Alpha 3 (0.98.3), así que igual han cambiado algo.

De todos modos, el ejecutable resulta ser un script que no entiendo muy bien...
[samuel@arch ~]$ cat /usr/bin/banshee-1
#!/bin/bash

prefix=/usr
libdir=/usr/lib
exec_asm="Nereid.exe"
MONO_EXE="/usr/lib/banshee-1/$exec_asm"

export DYLD_LIBRARY_PATH=/usr/lib:/usr/lib/banshee-1${DYLD_LIBRARY_PATH+:$DYLD_LIBRARY_PATH}
export LD_LIBRARY_PATH=/usr/lib:/usr/lib/banshee-1${LD_LIBRARY_PATH+:$LD_LIBRARY_PATH}
export GST_PLUGIN_PATH=/usr/lib/banshee-1/gstreamer-0.10${GST_PLUGIN_PATH+:$GST_PLUGIN_PATH}

# Finally - environment is set up, time to run our beloved
exec -a banshee-1 mono --debug $MONO_EXE "$@"

El ejecutable es /usr/lib/banshee-1/Nereid.exe y se ejecuta con mono. Se supone que con "$@" se le pasan todos los argumentos, tal vez al ser una beta de una nueva versión todavía no han implementado esas funciones si ha cambiado algo internamente (y, por lo que he leído, ha cambiado mucho).
nada, no sirve --query-title, ni query nada xD

como dice amuchamu, el programa ha sido reescrito en gran parte.. y eso puede estar afectado....

ya esta la beta1 (0.99.1) con muchas mejoras respecto a la alpha3 en la web oficial.. a ver si entra en los repos y ya se le puede sacar info por consola xD

gracias por responder ;)
3 respuestas