summary refs log tree commit diff
path: root/.profile
blob: bab387d4e4ef919af1b3c1dfa647ca1af8cb7f3f (plain)
1
2
3
4
5
6
7
8
9
10
11
PATH="$PATH:$HOME/.local/bin"
export EDITOR="micro"
export APORTSDIR="$HOME/gs/aports"

# Bigger font
if [ "$(tty)" = /dev/tty6 ]; then
	setfont /usr/share/consolefonts/ter-132n.psf.gz
fi

# Set the window title to the path
export PS1='`echo -ne "\033]0;${PWD}\007" 1>&2`\w \$ '