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
|
|
|
|
2016-09-01 13:16:13 +00:00
|
|
|
export CONFIG_DIR="${XDG_CONFIG_HOME:-$HOME/.config}"
|
|
|
|
export DOTFILES=$CONFIG_DIR/dotfiles
|
2016-03-31 02:03:55 +00:00
|
|
|
export PATH="${PATH}:$DOTFILES/scripts"
|
2016-04-19 16:12:23 +00:00
|
|
|
export XDG_CURRENT_DESKTOP="GNOME" # Fixes xdg-open
|
2016-03-31 02:03:55 +00:00
|
|
|
|
|
|
|
export EDITOR="vim"
|
|
|
|
export VISUAL="vim"
|
2017-11-15 23:25:52 +00:00
|
|
|
export LESS="-RSNI"
|
2016-05-01 13:28:39 +00:00
|
|
|
export PAGER="less -R"
|
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"
|
2017-02-25 02:45:56 +00:00
|
|
|
export QT_QPA_PLATFORMTHEME=gtk2
|
2016-07-19 22:33:03 +00:00
|
|
|
|
2017-10-03 08:34:02 +00:00
|
|
|
# Source secret keys and values into environment
|
|
|
|
if [ -f "$CONFIG_DIR/secrets" ]; then
|
|
|
|
set -o allexport
|
|
|
|
source $CONFIG_DIR/secrets
|
|
|
|
set +o allexport
|
|
|
|
fi
|
|
|
|
|
2016-08-26 20:32:31 +00:00
|
|
|
# Merge system clipboards
|
2017-10-03 09:28:57 +00:00
|
|
|
if [ -n "$DISPLAY" ] && which autocutsel &>/dev/null; then
|
2016-09-01 13:48:17 +00:00
|
|
|
autocutsel -fork &
|
|
|
|
autocutsel -selection PRIMARY -fork &
|
|
|
|
fi
|
2016-08-26 20:32:31 +00:00
|
|
|
|
2017-07-08 23:09:12 +00:00
|
|
|
if [ -z "$DBUS_SESSION_BUS_ADDRESS" ]; then
|
|
|
|
eval $(dbus-launch --sh-syntax --exit-with-session)
|
|
|
|
dbus-update-activation-environment --systemd DISPLAY
|
2016-07-20 15:25:24 +00:00
|
|
|
fi
|
2017-11-03 00:28:18 +00:00
|
|
|
|
|
|
|
# Start the gnome-keyring if it's installed
|
|
|
|
if which gnome-keyring-daemon &>/dev/null; then
|
|
|
|
export $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh,gnupg)
|
|
|
|
fi
|