Here is a small script to remove all your Evolution settings: #!/bin/bash evolution –force-shutdown rm -rf $HOME/.evolution rm -rf $HOME/.gconf/apps/evolution rm -rf $HOME/.gnome2_private/Evolution kill -9 `pidof gconfd-2` Next time you open Evolution, you will be prompted to add a new account.
Archive for September 2009
Fix Google Earth 5.0 user interface font on Linux
I installed Google Earth 5.0 and the ugly UI font from the beta is still here. Based on the comments from Google Earth Help page from here I’ve created the following script wich will fix the user interface font issue. #!/bin/bash sudo aptitude -y install libqt4-webkit ge=`which googleearth` if [ -n "$ge" ]; [...]