dotfiles

Clean dotfiles
git clone git://git.dimitrijedobrota.com/dotfiles.git
Log | Files | Refs

bashrc (606B)


0 # 1 # ${XDG_CONFIG_HOME}/bash/bashrc 2 # 3 4 # If not running interactively, don't do anything 5 [[ $- != *i* ]] && return 6 7 # Source functions if exist 8 function_file=${XDG_CONFIG_HOME}/bash/bash_functions 9 [[ -f "$function_file" ]] && source "$function_file" 10 unset function_file 11 12 # Dotfiles 13 alias dotfiles='/usr/bin/git --git-dir=$HOME/.dotfiles --work-tree=$HOME' 14 complete -F __git_wrap__git_main dotfiles 15 16 # Aliases 17 alias wget='wget --hsts-file="$XDG_CONFIG_HOME/wget-hsts"' 18 19 # Variables 20 export GPG_TTY=$(tty) 21 export MAKEFLAGS="-j8" 22 23 # Customization 24 PS1="$(battery_status) | $GREEN\u [ $NORMAL\w$GREEN ]$ $NORMAL"