--- English --- My Conky (top) and Tint2 (bottom) config, made to match up Vorta Suite from Fratrip.
Just copy and paste the folders and files (except the ReadMe ) to your home folder, restart conky and tint, and enjoy.
- The gmail script was (I think) originally made by lyrae. - The NowPlaying code is for Decibel Audio Player.
Don't forget to show hidden files
--- Français --- Mes fichiers de configuration de Conky et Tint, qui vont avec la Vorta Suite de Fratrip. Il faut juste les copier dans votre dossier personnel.
- Le script Gmail est de lyrae. - Le bout de code Now Playing est pour les utilisateurs de Decibel Audio Player.
N'oubliez pas d'afficher les fichiers cachés
--- Changelog --- v 1.1 : minor modifications, personnal parameters deleted v 1.0 : release
the conky theme is great (the first that works with compiz on mint ) but i dont like the ಠ at the end... you can remove it with an hex editor, just delete the last 0A
Ow, I thought I had updated the package about this, I had been told about it a while ago. No need of an hex editor, actually, a mere text editor would've been enough, someone told me to remove the empty line at the end of the file
Hey, I love this set up! The tint works fine, but the conky, How do i get the gmail to work? I put my username and password in the gmail.py but still not working? what folder does it have to be in?
also, is there any way to modify the now playing code to work with rhythmbox??
It's been a while since the last time I've been using Conky ! I don't really remember how the gmail script works ! Sorry Perhaps the script is too old. Try to find some recent conky configs.
For Rhythmbox, I believe the command rhythmbox-client --print-playing may help. This script might work :
Thanks ! Actually, I also posted a screenshot of the whole desktop and stuff, in wich deviation description the wallpaper was named. Anyway, here is a link : Astral on Infinise Design
also, is there any way to modify the now playing code to work with rhythmbox??
thanks!!
For Rhythmbox, I believe the command rhythmbox-client --print-playing may help.
This script might work :
#!/bin/bash
#~/scripts/song.sh
song=$(rhythmbox-client --print-playing --no-start)
if [ $song = `` ]
then
echo -e "Rhythmbox is not running"
else
echo $song
fi