blob: a888a36fde4f6ca26cd623fd63f63c095c553ae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
# -*- mode: sh; sh-shell: sh -*-
#if [ -f "$HOME/.profile" ]; then
# . "$HOME/.profile";
#fi
if [ -f "$HOME/.local/bin/startup-progs" ]; then
. "$HOME/.local/bin/startup-progs"
fi
# LC_ALL=C twm &
[ -x "$(command -v emacs)" ] && exec ssh-agent emacs -ib 0
|