
Conky ~ Amd ~ Audacious
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
Gimmie5Bukks
9 years ago
Report
szlajerka
9 years ago
Report
BassUltra
10 years ago
I like this conky, although it has too much going on for me.
Report
szlajerka
10 years ago
Report
neodin89
10 years ago
but i have a problem i installed conky
and put this file in .conkyrc and named it conkyrc. then i went to startup applications and gave a link to the file.however it doesnt run on startup?
thanks
Report
szlajerka
10 years ago
sudo gedit .conky_start.sh
copy the code below and past into the file. Save and close
#!/bin/bash
sleep 10 && conky;
This would start conky after 10 seconds after you login. The delay can be changed. Some sort of delay is desirable if you autostart beryl as well since conky works best if started after beryl. Not using beryl so I changed it to sleep 2 && conky; Make sure the script is executable:
chmod a+x .conky_start.sh
Now, add it to your startup programs (menu: system->preferences->startup applications).Note, path to script is /home/>your user name/.conky_start.sh
Report
szlajerka
10 years ago
sudo gedit .conky_start.sh
copy the code below and past into the file. Save and close
#!/bin/bash
sleep 10 && conky;
This would start conky after 10 seconds after you login. The delay can be changed. Some sort of delay is desirable if you autostart beryl as well since conky works best if started after beryl. Not using beryl so I changed it to sleep 2 && conky; Make sure the script is executable:
chmod a+x .conky_start.sh
Now, add it to your startup programs (menu: system->preferences->startup applications).Note, path to script is /home/>your user name/.conky_start.sh
Report