Tobias Reisinger
625ee51457
add: XDG_XXXXX_DIR config add: zathura config fix: launch of mpd and mopidy
21 lines
521 B
Bash
21 lines
521 B
Bash
export EDITOR='/usr/bin/vim'
|
|
export VIMINIT="source $HOME/.config/vim/vimrc"
|
|
export NOTMUCH_CONFIG="$HOME/.config/notmuch/config"
|
|
export PASSWORD_STORE_GENERATED_LENGTH='64'
|
|
|
|
if [ -x "$(command -v gpgconf)" ]
|
|
then
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
gpgconf --launch gpg-agent
|
|
fi
|
|
|
|
if [ -x "$(command -v mopidy)" ]
|
|
then
|
|
mpd &
|
|
else
|
|
if [ -x "$(command -v mpd)" ] && mopidy &
|
|
fi
|
|
|
|
[ -x "$(command -v ympd)" ] && ympd --webport 54594 &
|
|
|
|
[ $SHELL = "/bin/bash" ] && source $HOME/.bashrc
|