aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/.profile
blob: 8db89e5b1adade37a093ce481b450c6e5e085c01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
## PATH:
# Add "$HOME/usr/bin" to $PATH because that is where I keep all of my
# personal utilities and helper commands.
PATH="${HOME}/usr/bin:${PATH}"
export PATH

## XDG:

# I keep my XDG files in the normal place, but specifying them in an
# environment variable makes things a little easier/clearer.
export XDG_CONFIG_HOME="${HOME}/.config"
export XDG_DATA_HOME="${HOME}/.local/share"

## Dbus

# Make the session bus address fixed so other processes can know where
# to find it.
DBUS_SESSION_BUS_ADDRESS="unix:path=/run/user/$(id -u)/bus"
export DBUS_SESSION_BUS_ADDRESS

systemctl --user import-environment PATH