1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00
dotfiles/.profile

82 lines
2.8 KiB
Plaintext
Raw Normal View History

2016-04-01 11:45:17 +00:00
export LC_ALL=en_GB.UTF-8
2016-03-31 21:34:07 +00:00
export LANG=en_GB.UTF-8
export LC_NUMERIC=en_GB
2016-03-31 02:03:55 +00:00
2018-04-11 16:42:42 +00:00
export XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"
export XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
export XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
export XDG_LOCAL_HOME="$HOME/.local"
export XDG_CURRENT_DESKTOP="GNOME" # Fixes xdg-open
case "$(basename "$(readlink -f /proc/$$/exe)")" in
zsh) thisfile="$(readlink -f "${(%):-%N}")";;
bash) thisfile="$(readlink -f "${BASH_SOURCE[0]}")";;
*) thisfile="$(find /proc/$$/fd/ | xargs readlink -f | grep .profile | head -n1)";;
esac
2018-04-11 16:42:42 +00:00
export DOTFILES="$(dirname "${thisfile:-$XDG_CONFIG_HOME/dotfiles}")"
2016-03-31 02:03:55 +00:00
export PATH="${PATH}:$DOTFILES/scripts"
2017-11-23 19:15:43 +00:00
# Allow Vim to load from ~/.config/vim
2018-04-11 16:42:42 +00:00
export VIMDIR="$XDG_CONFIG_HOME/vim"
2018-04-12 01:51:32 +00:00
export VIMRC="$VIMDIR/vimrc"
export VIMINIT=":so $VIMRC"
2016-03-31 02:03:55 +00:00
export EDITOR="vim"
export VISUAL="vim"
2018-04-11 15:42:01 +00:00
# Allow ZSH to load from ~/.config/zsh
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
2018-04-11 16:42:42 +00:00
# Configure X11 config file paths
export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority"
export XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"
2017-12-11 14:16:13 +00:00
export MANPAGER="less -+N"
2016-05-16 16:43:27 +00:00
export TERMINAL="termite"
2016-09-01 13:15:31 +00:00
export BROWSER="chromium"
2016-03-31 02:03:55 +00:00
export _JAVA_OPTIONS="-Dawt.useSystemAAFontSettings=on -Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel"
export QT_QPA_PLATFORMTHEME=gtk2
2018-04-11 16:42:42 +00:00
export GOPATH="$XDG_LOCAL_HOME/go"
2016-07-19 22:33:03 +00:00
exists() { which $@ 0<&- 1>/dev/null 2>/dev/null; }
export LESS="-RI"
2018-02-27 01:38:51 +00:00
export PAGER="less $LESS"
if exists tput; then
export LESS_TERMCAP_mb=$(tput bold; tput setaf 2) # green
export LESS_TERMCAP_md=$(tput bold; tput setaf 6) # cyan
export LESS_TERMCAP_me=$(tput sgr0)
export LESS_TERMCAP_so=$(tput bold; tput setaf 4) # blue
export LESS_TERMCAP_se=$(tput rmso; tput sgr0)
export LESS_TERMCAP_us=$(tput smul; tput bold; tput setaf 7) # white
export LESS_TERMCAP_ue=$(tput rmul; tput sgr0)
export LESS_TERMCAP_mr=$(tput rev)
export LESS_TERMCAP_mh=$(tput dim)
export LESS_TERMCAP_ZN=$(tput ssubm)
export LESS_TERMCAP_ZV=$(tput rsubm)
export LESS_TERMCAP_ZO=$(tput ssupm)
export LESS_TERMCAP_ZW=$(tput rsupm)
fi
2018-02-27 01:38:51 +00:00
2017-10-03 08:34:02 +00:00
# Source secret keys and values into environment
2018-04-11 16:42:42 +00:00
if [ -f "$XDG_CONFIG_HOME/secrets" ]; then
2017-10-03 08:34:02 +00:00
set -o allexport
2018-04-11 16:42:42 +00:00
source $XDG_CONFIG_HOME/secrets
2017-10-03 08:34:02 +00:00
set +o allexport
fi
# Merge system clipboards
if [ -n "$DISPLAY" ] && exists autocutsel && ! pidof autocutsel 1>/dev/null; then
autocutsel -fork
autocutsel -selection PRIMARY -fork
fi
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ] && exists dbus-launch; then
eval $(dbus-launch --sh-syntax --exit-with-session)
dbus-update-activation-environment --systemd DISPLAY
fi
# Start the gnome-keyring if it's installed
if exists gnome-keyring-daemon; then
export $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh,gnupg)
fi