Conky y Rhythmbox

Estoy intentando hacer un conky a mi gusto, y cogiendo un script, este:

#!/bin/bash
# barra de % para rhythmbox
x=`rhythmbox-client --no-start --print-playing-format "%td" | tr -d ":" | sed 's#Not playing##'`;
y=`rhythmbox-client --no-start --print-playing-format "%te" | tr -d ":" | sed 's#Not playing##'`;
x=$(($x+0));
y=$(($y+0));
test $x -eq 0 && x=100;
z=$((100000/ $x * $y /1000));
test $z -gt 100 && echo 100 || echo $z;

x=`rhythmbox-client --no-start --print-playing-format "%td" | tr -d ":" | sed 's#Not playing##'`;y=`rhythmbox-client --no-start --print-playing-format "%te" | tr -d ":" | sed 's#Not playing##'`;x=$(($x+0));y=$(($y+0));test $x -eq 0 && x=100;z=$((100000/ $x * $y /1000));test $z -gt 100 && echo 100 || echo $z;

# By meduza

Y poniendolo en conky así:

${if_running rhythmbox}
MUSIC ${hr 1}

Title: ${exec rhythmbox-client --no-start --print-playing-format "%tt"}
Artist: ${exec rhythmbox-client --no-start --print-playing-format "%aa"}$alignr${color}Track: ${exec rhythmbox-client --no-start --print-playing-format "%tN"}
Time: ${exec rhythmbox-client --no-start --print-playing-format "%te" / "%td"}$alignr${color}Year: ${exec rhythmbox-client --no-start --print-playing-format "%ay"}
${execbar sh ~/.conky/rhythmboxbar.sh}
${endif}

La cosa es que si no está abierto ni reproduciendo Rhythmbox, pues perfecto. Ahora, cuando lo pongo a reproducir, la cpu se vuelve loca y acaba petando rhythmbox.

Esos scripts son cogidos de internet y nadie se queja, y no sé porqué me pasa esto.
Si alguien sabe algo, por favor, comentar.

Gracias