blob: 75200c21603e749e4346fe2168dda2c129b048e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# Terminal geometry file configuration.
#
# Default terminal application
TERM="rxvt"
# Optional font configuration
#FONT="-*-terminus-*-*-*-*-14-*-*-*-*-*-*-*"
# Load custom configuration
if [ -e "$HOME/.custom/geometry" ]; then
source $HOME/.custom/geometry
fi
|