Back (Current repo: dotfiles)

my dotfiles to make it easy to transfer my settings
To clone this repository:
git clone https://git.viktor1993.net/dotfiles.git
Log | Download | Files | Refs

.profile (643B)


# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
        source "$HOME/.bashrc"
    fi
fi

export BROWSER="$HOME/firefox/firefox/firefox"
export BROWSER2="/usr/bin/firefox"
export TERMINAL="/usr/local/bin/st"
export EDITOR="/usr/bin/vim"
export STUDY_FILES="$HOME/spanish_study/vocabulary"
export MPC="mpc -h 127.0.0.1 -p 6664 "
export MPV="mpv --input-ipc-server=/tmp/mpvsocket "
export SUDO_ASKPASS=$HOME/.local/bin/dmenupass

if [ -d "$HOME/bin" ] ; then
        PATH="$HOME/bin:$PATH"
fi

if [ -d "$HOME/.local/bin" ] ; then
        PATH="$HOME/.local/bin:$PATH"
fi