summaryrefslogtreecommitdiffstats
path: root/profile
blob: eb10522eba16b9ce9e349a474f2abda7388f764a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# On Debian this file is loaded when the user first logs in login(1)
# If you want something that loads everytime a new terminal emulator is launched
# then put it inside .bashrc

if [ "$SHELL" = "/bin/bash" ]; then
    . ~/.bashrc
fi


# Variables
# ======================================================================

# redundant but useful 
# (XDG = Cross-Desktop Group, 
# more info at https://wiki.archlinux.org/index.php/XDG_Base_Directory)
export XDG_CONFIG_HOME="$HOME/.config"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_DATA_HOME="$HOME/.local/share"
#export XDG_DATA_DIRS="/usr/local/share:/usr/share"
#export XDG_CONFIG_DIRS="/etc/xdg"


# Fun
# ======================================================================

echo "Welcome back $LOGNAME"