]> git.phdru.name Git - dotfiles.git/blob - .profile
.profile: Add `$SCREENDIR`
[dotfiles.git] / .profile
1 #
2 # $HOME/.profile (works with sh, ksh and bash)
3 #
4
5 # ~/.profile: executed by the command interpreter for login shells.
6 # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
7 # exists.
8 # see /usr/share/doc/bash/examples/startup-files for examples.
9 # the files are located in the bash-doc package.
10
11 #if test -n "$BASH_VERSION"; then
12 #   bash
13 #elif test -n "$KSH_VERSION"; then
14 #   ksh93
15 #elif test -n "$FCEDIT"; then
16 #   ksh88
17 #elif test -n "$ZSH_VERSION"; then
18 #   zsh
19 #elif test -n "$PS3"; then
20 #   unknown
21 #else
22 #   sh
23 #fi
24
25 if [ -z "$USER" ]; then
26    USER="$LOGNAME"; export USER
27 fi
28
29 # the default umask is set in /etc/profile; for setting the umask
30 # for ssh logins, install and configure the libpam-umask package.
31 #umask 022
32
33 ### umask sets a mask for the default file permissions,
34 ### umask 022 is less restrictive, 077 more paranoid
35 umask 077
36
37 PATH="$HOME"/bin:"$HOME"/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
38 MANPATH="$HOME"/man:/usr/local/man:/usr/share/man:/usr/man
39 # LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/lib
40 export PATH MANPATH # LD_LIBRARY_PATH
41
42 LANG=C
43 #LC_ALL=C
44 case "$LC_CTYPE" in
45    *UTF-8) # LC_CTYPE is already set
46    ;;
47
48    *) LC_CTYPE=ru_RU.KOI8-R
49    ;;
50 esac
51 LC_COLLATE="$LC_CTYPE"
52 #LANGUAGE="ru en"
53 export LANG LC_CTYPE LC_COLLATE
54 unset LC_ALL LANGUAGE
55
56 # Default for df/du
57 BLOCKSIZE=1k
58 export BLOCKSIZE
59
60 ### uncomment to select an alternate timezone (/etc/localtime is default)
61 # TZ=/usr/share/zoneinfo/Europe/Moscow; export TZ
62
63 ### NEWS Configuration
64 ORGANIZATION=Home
65 # NNTPSERVER=news
66 export ORGANIZATION # NNTPSERVER
67
68 (set -P 2>/dev/null) && set -P # follow physical paths, not symlinks
69
70 # Interactive only commands
71 if [ -t 0 ] ; then
72    #if test -f .hushlogin && ! cmp -s .motd /etc/motd; then
73    #   tee $HOME/.motd < /etc/motd
74    #fi
75
76    if [ -z "$TERM" ]; then
77       eval `tset -Q -s -m 'network:?xterm'`
78    fi
79
80    stty sane erase ^H
81
82    if which less >/dev/null 2>&1; then
83       HAS_LESS=true
84    fi
85
86    case "$TERM" in
87       linux)
88          # mutt, python and vim
89          BACKGROUND=DARK
90          export BACKGROUND
91          [ -n "$HAS_LESS" ] && . "$HOME"/lib/config/less/dark_bg
92       ;;
93
94       *rxvt*|screen*|*term*|vt100)
95          BACKGROUND=LIGHT
96          export BACKGROUND
97          [ -n "$HAS_LESS" ] && . "$HOME"/lib/config/less/light_bg
98       ;;
99    esac
100
101    if [ -x /usr/bin/dircolors ]; then
102        test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
103    fi
104
105    if [ -n "$HAS_LESS" ]; then
106       PAGER=less
107       LESS="Rgimq"
108       case "$LC_CTYPE" in
109          *UTF-8) LESSCHARSET=utf-8
110          ;;
111
112          *) LESSCHARSET=koi8-r
113          ;;
114       esac
115       #LESSCHARDEF=32c.
116       LESSEDIT='vim ?lt+%lt. -- %f'
117       export LESS LESSCHARSET LESSEDIT # LESSCHARDEF
118
119       # make less more friendly for non-text input files, see lesspipe(1)
120       #[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
121
122    else
123       PAGER=more
124    fi
125    export PAGER
126
127    EDITOR="$HOME"/.vim/vim.sh
128    FCEDIT="$EDITOR"
129    VISUAL="$EDITOR"
130    export EDITOR FCEDIT VISUAL
131
132    HISTCONTROL=ignoreboth
133    HISTIGNORE='&: *:x:X:[bf]g'
134    HISTFILE="$HOME/.sh_history"
135    HISTFILESIZE=2000
136    HISTSIZE=1000
137    export HISTCONTROL HISTIGNORE HISTFILE HISTFILESIZE HISTSIZE
138
139    # Used by bash/mc for hostname completion
140    HOSTFILE="$HOME"/lib/config/hosts
141    export HOSTFILE
142
143    MAIL="/var/mail/$USER"
144    MAILPATH="$MAIL:$HOME/mail/admin:$HOME/mail/block:$HOME/mail/bulk"
145    if [ -d "$HOME"/mail/lists/ ]; then
146          MAILPATH="$MAILPATH:`echo $HOME/mail/lists/* | sed 's/ /:/g'`"
147    fi
148    export MAIL MAILPATH
149
150    BROWSER="links2:links:elinks:w3m:lynx"
151    case "$TERM" in
152       *rxvt*|screen*|*term*|vt100)
153          BROWSER="l:$BROWSER"
154       ;;
155    esac
156    export BROWSER
157
158    #all_proxy="http://localhost:3128"
159    #ftp_proxy="$all_proxy"
160    #gopher_proxy="$all_proxy"
161    #http_proxy="$all_proxy"
162    #https_proxy="$all_proxy"
163    auto_proxy="file:///home/phd/admin/WWW/Mozilla/mozilla.pac"
164    no_proxy="localhost,127.0.0.1"
165    #export all_proxy ftp_proxy http_proxy https_proxy auto_proxy no_proxy # gopher_proxy
166    export auto_proxy no_proxy
167
168    ENV="$HOME/.shellrc"
169    export ENV
170
171    # set variable identifying the chroot you work in (used in the prompt below)
172    if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
173        debian_chroot="`cat /etc/debian_chroot`"
174    fi
175
176    if test -n "$BASH_VERSION"; then
177       . "$HOME/.bashrc"
178    else
179       PS1="${debian_chroot:+($debian_chroot)}`/usr/bin/whoami`@`/bin/hostname -s` > "
180    fi
181
182    ### biff controls new mail notification
183    #biff n
184    ### mesg controls messages (write/talk) from other users
185    mesg n
186    # make mail(1) use a pager
187    crt=; export crt
188
189    PYTHONSTARTUP="$HOME"/lib/python/init.py
190    export PYTHONSTARTUP
191
192    name="Oleg Broytman"
193    email="phd@phdru.name"
194
195    GIT_AUTHOR_NAME="$name"
196    GIT_AUTHOR_EMAIL="$email"
197    GIT_COMMITTER_NAME="$name"
198    GIT_COMMITTER_EMAIL="$email"
199    export GIT_AUTHOR_NAME GIT_AUTHOR_EMAIL GIT_COMMITTER_NAME GIT_COMMITTER_EMAIL
200
201    HGUSER="$name <$email>"
202    export HGUSER
203
204    unset name email
205
206    #if which pyenv >/dev/null 2>&1; then
207    #   PYENV_ROOT="$HOME/.pyenv"
208    #   export PYENV_ROOT
209    #   PATH="$PYENV_ROOT/bin:$PATH"
210    #   eval "`pyenv init --path`"
211    #fi
212
213    #SCREENDIR="$HOME"/tmp/screen
214    #export SCREENDIR
215    #mkdir -p "$SCREENDIR"
216    #chmod 700 "$SCREENDIR"
217 fi
218
219 # No need to set DISPLAY - ssh sets DISPLAY and calls xauth
220 #DISPLAY="`who am i | awk '{print substr($6, 2, length($6)-2 )}' | sed -e 's/:.*$//'`:0.0"
221 #export DISPLAY
222
223 if [ -n "$DISPLAY" ]; then
224    # mutt, python and vim
225    BACKGROUND=LIGHT
226    export BACKGROUND
227    [ -n "$HAS_LESS" ] && . "$HOME"/lib/config/less/light_bg
228
229    # BROWSERs
230    BROWSER="firefox:seamonkey:chromium:google-chrome:opera:xlinks2:$BROWSER"
231
232    ### X Window System Configuration
233    #XAPPLRESDIR="$HOME/lib/X11/app-defaults/"; export XAPPLRESDIR
234    ### Old-style XNLSPATH
235    #XNLSPATH=/usr/X11R6/lib/X11/nls; export XNLSPATH
236
237    # For GTK2/GLib to convert filenames between internal and locale encodings
238    G_FILENAME_ENCODING="@locale"
239    export G_FILENAME_ENCODING
240    #G_BROKEN_FILENAMES=1
241    #export G_BROKEN_FILENAMES
242
243    # X Input Method, for Multi key (Compose) to work
244    GTK_IM_MODULE=xim
245    QT_IM_MODULE=xim
246    export GTK_IM_MODULE QT_IM_MODULE
247
248    # GTK2 anti-aliasing
249    GDK_USE_XFT=1
250    export GDK_USE_XFT
251
252    # nVidia OpenGL full scene anti-aliasing
253    #__GL_FSAA_MODE=4
254    #export __GL_FSAA_MODE
255
256    #xhost +local:root > /dev/null 2>&1
257 fi
258
259 [ -n "$HAS_LESS" ] && unset HAS_LESS
260
261 #
262 # read in usepkg function
263 # . "$HOME"/lib/config/usepkg.sh
264 #
265
266 #
267 # usepkg gnu
268 #
269
270 #
271 # If SUN console, start the windows system
272 #
273 # if [ `tty` = /dev/console ] ; then
274 #    if [ "$TERM" = sun -o "$TERM" = AT386 ] ; then
275 #
276 #       if [ ${OPENWINHOME:-""} = "" ] ; then
277 #          OPENWINHOME=/usr/openwin
278 #          export OPENWINHOME
279 #       fi
280 #
281 #       echo ""
282 #       echo "Starting OpenWindows in 5 seconds (type Control-C to interrupt)"
283 #       sleep 5
284 #
285 #       "$OPENWINHOME"/bin/openwin
286 #
287 #       clear      # get rid of annoying cursor rectangle
288 #       #exit      # logout after leaving windows system
289 #
290 #    fi
291 # fi