Some modern themes for your Linux desktop.

Themes This blog post: http://jfnlinuxproject.blogspot.com.au/2015/01/windows-10-theme.html has a list of links and screenshots that show a themed desktop that looks roughly like Windows 10. This does need more work. But I am sure that you could make a Linux desktop resemble Windows 10 if you so wished. In time, there will be an actual Windows 10 … Read more

Find where an executable is on your Linux system.

Finding the location of an installed program can be annoying. But this is how to find where a program is. The whereis(1) command will print out the installed locations of various programs. darkstar:~/Documents> whereis tcsh tcsh: /usr/bin/tcsh /bin/tcsh /usr/share/man/man1/tcsh.1.gzdarkstar:~/Documents> whereis tcsh tcsh: /usr/bin/tcsh /bin/tcsh /usr/share/man/man1/tcsh.1.gz The find command will also allow you to locate an … Read more