Install conky from your package manager. The package is called conky. su -c ‘yum install conky’ sudo apt-get install conky Once that’s installed you can run conky from the command line. When you first run conky it dosent have a very nice look to it, we’ll fix that later. Now that we know conky works, [...]
Articles
26.03.11 - How to configure Conky
28.01.11 - Using grep and wget to download all hyperlinks to .pdf
I had a site that contained a load of pdfs that I wanted to download, to save me from clicking on each of the pdfs I did some googleing and found how to download all files ending in .pdf. cat index.html | grep -o -e http://[^[:space:]\”]*.pdf | xargs wget and for an even better approach [...]
