work
This commit is contained in:
11
zsh/zprofile
11
zsh/zprofile
@@ -9,7 +9,7 @@ _path=("$HOME/bin"
|
||||
"/usr/games")
|
||||
|
||||
PATH=""
|
||||
for part in ${_path} ; do
|
||||
for part in ${_path[@]} ; do
|
||||
PATH="$PATH:${part}"
|
||||
done
|
||||
PATH="${PATH#:}"
|
||||
@@ -17,9 +17,10 @@ export PATH
|
||||
|
||||
export EDITOR="vim"
|
||||
export VISUAL="vim"
|
||||
export BROWSER="qutebrowser"
|
||||
export BROWSER="firefox-trunk"
|
||||
|
||||
export PAGER="less"
|
||||
export LESS="FRX"
|
||||
|
||||
export VIMRC="$HOME/.vimrc"
|
||||
|
||||
@@ -34,6 +35,9 @@ export LANG=en_US.UTF-8
|
||||
export LC_TIME=de_DE.UTF-8
|
||||
export LC_COLLATE=C
|
||||
|
||||
export DOTFILES=~/dotfiles
|
||||
|
||||
|
||||
# Start the gpg-agent if not already running
|
||||
if ! pgrep -x --uid "${USER}" gpg-agent >/dev/null 2>&1; then
|
||||
gpg-connect-agent /bye >/dev/null 2>&1
|
||||
@@ -47,6 +51,3 @@ fi
|
||||
|
||||
# Set GPG TTY
|
||||
export GPG_TTY=$(tty)
|
||||
|
||||
# exec startx breaks some logind fuckery, without exec it works
|
||||
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && startx
|
||||
|
||||
Reference in New Issue
Block a user