I though it might be fun/useful to share your favorite tweaks.
Here's a couple of mine that I've copied over from my gentoo setup:
I have been using .Xdefaults in my home directory to set default aterm settings. This allows me to have the same aterm settings as I use different wm with having to hack different scripts in each.
# ~/.Xdefaults
# Aterm Terminal Settings
aterm*loginShell:true
aterm*transparent:true
aterm*shading:50
aterm*scrollBar:true
aterm*scrollBar_left:true
aterm*transpscrollbar:true
aterm*geometry:55x23+0+0
# 786 lines = 500 KB of memory
aterm*saveLines:300
# Aterm Font Settings, selected using 'xfontsel'
aterm*font:-*-*-bold-*-*-*-15-*-*-*-*-*-*
# Aterm Color Settings
aterm*background: black
aterm*foreground: green
aterm*cursorColor: green
# I got these colors from using gnome-terminal's color
# dialogue. under Palette, i selected 'linux console'
# and just middle-mouse copied the values over--a swell hack
aterm*color0: #000000
aterm*color1: #AA0000
aterm*color2: #00AA00
aterm*color3: #AA5500
aterm*color4: #0000AA
aterm*color5: #AA00AA
aterm*color6: #00AAAA
aterm*color7: #AAAAAA
aterm*color8: #555555
aterm*color9: #FF5555
aterm*color10: #55FF55
aterm*color11: #FFFF55
aterm*color12: #5555FF
aterm*color13: #FF55FF
aterm*color14: #55FFFF
aterm*color15: #FFFFFF
Then to customize the bash prompt I've added .bash_profile and .bashrc to my home directory as well. The settings display the path at the prompt so you always know where you are. Also it allows you to create aliases or shortcuts, I've set it so that "d" = ls and "nano" = nano -w.
.bash_profile ->
# /etc/skel/.bash_profile:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bash_profile,v 1.10 2002/11/18 19:39:22 azarah Exp $
#This file is sourced by bash when you log in interactively.
[ -f ~/.bashrc ] && . ~/.bashrc
.bashrc ->
# /etc/skel/.bashrc:
# $Header: /home/cvsroot/gentoo-src/rc-scripts/etc/skel/.bashrc,v 1.8 2003/02/28
#15:45:35 azarah Exp $
# This file is sourced by all *interactive* bash shells on startup. This
# file *should generate no output* or it will break the scp and rcp commands.
alias d="ls"
alias nano="nano -w"
PS1="\$(pwd) # "
And lastly, I've added a message that is displayed with each new prompt by adding a last line to /etc/profle
echo "Zaurus = Penguin Power"
Cheers,
Jerry