forked from satori/dotrc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile
43 lines (37 loc) · 1.23 KB
/
profile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- mode: shell-script; -*-
# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.
# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
else
ENV=$HOME/.shrc; export ENV
fi
PATH="$PATH:$HOME/bin:$HOME/.local/bin"
if [ "x$XDG_RUNTIME_DIR" != "x" ]; then
export EMACS_SOCKET_NAME=$XDG_RUNTIME_DIR/emacs/server
if [ -x /usr/local/bin/skotty ]; then
SSH_AUTH_SOCK="$HOME/.skotty/sock/default.sock"
else
SSH_AUTH_SOCK=$XDG_RUNTIME_DIR/keyring/ssh
fi
export SSH_AUTH_SOCK
fi
# Keep a link to the latest ssh-agent socket
if [ -n "$SSH_CONNECTION" -a -S "$SSH_AUTH_SOCK" ]; then
if [ -n "$TMUX" ]; then
SSH_AUTH_SOCK=$HOME/.ssh/ssh-agent.sock
ssh-auth-sock-watcher update
else
ssh-auth-sock-watcher register "$SSH_AUTH_SOCK"
fi
fi