diff options
Diffstat (limited to 'bootstrap/profile')
-rw-r--r-- | bootstrap/profile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bootstrap/profile b/bootstrap/profile new file mode 100644 index 0000000..4cb459d --- /dev/null +++ b/bootstrap/profile | |||
@@ -0,0 +1,17 @@ | |||
1 | # profile | ||
2 | # vim:ft=sh | ||
3 | |||
4 | # XDG directories | ||
5 | export XDG_CONFIG_HOME="$HOME/etc" | ||
6 | export XDG_CACHE_HOME="$HOME/var/cache" | ||
7 | export XDG_DATA_HOME="$HOME/usr/share" | ||
8 | |||
9 | export XDG_DATA_DIRS="${XDG_DATA_DIRS:-/usr/local/share:/usr/share}" | ||
10 | export XDG_CONFIG_DIRS="${XDG_CONFIG_DIRS:-/etc/xdg}" | ||
11 | |||
12 | # source files in $XDG_CONFIG_HOME/profile | ||
13 | if [ -d "$XDG_CONFIG_HOME/profile" ]; then | ||
14 | for file in "$XDG_CONFIG_HOME"/profile/*.sh; do | ||
15 | [ -r "$file" ] && . "$file" | ||
16 | done | ||
17 | fi | ||