Articles
- How to configure Conky

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, [...]

1 comment so far

- 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 [...]

No comments