Things you might want to change in Ubuntu 8.04 (hardy) desktop, part 2
By Mikael Ståldal
After installing Ubuntu 8.04 (hardy) desktop, there are some things you might want to change. This article focus on user configuration (mostly editing dot files in your home directory) and do not require superuser access. Some of this changes requires that you log out to take effect.
Customize the bash shell
By default, bash save all commands in a history file. This can be quite annoying when you run several instances of the shell in parallel, and may also be a security concern. Add this line at the beginning of ~/.bashrc
to only keep command in memory until you exit the shell:
unset HISTFILE
Customize the nano editor
Add this to `~/.nanorc``:
unset backup
unset historylog
set nowrap
set quickblank
set tabsize 4
set morespace
Customize XTerm
I prefer to use xterm instead of the default GNOME terminal. xterm does not look so good by default, by using this you can get it to look almost like GNOME terminal, but faster and with smaller memory footprint. Add this to
~/.Xresources`:
XTerm*faceName: monospace
XTerm*faceSize: 10
XTerm*vt100.Background: white
XTerm*vt100.Foreground: black
XTerm*vt100.metaSendsEscape: true
xterm*saveLines: 1000
xterm*vt100.translations: #override \n\
<BtnUp>: select-end(PRIMARY, CLIPBOARD, CUT_BUFFER0) \n
Then open “Preferred Applications” in “Preferences” in the System menu, open the “System” tab and select “Standard XTerminal”.
See also part 1.