14 lines
258 B
Bash
Executable file
14 lines
258 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
|
|
export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket"
|
|
export PATH=$PATH:/home/ltc/bin
|
|
|
|
|
|
[ -f ~/.bashrc ] && source "$HOME/.bashrc"
|
|
|
|
[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x i3 > /dev/null && exec startx
|
|
|
|
[[ -n "$TMUX" ]] && source .bashrc
|
|
|