]> git.friedersdorff.com Git - max/saltfiles.git/blob - states/bash/files/profile
Remove sway config logic from bash profile
[max/saltfiles.git] / states / bash / files / profile
1 export PATH="${HOME}/.local/bin:${HOME}/.cargo/bin:${PATH}"
2
3 # Make XDG_RUNTIME_DIR, required for some sessions
4 if test -z "${XDG_RUNTIME_DIR}"; then
5   export XDG_RUNTIME_DIR=/tmp/${UID}-runtime-dir
6   if ! test -d "${XDG_RUNTIME_DIR}"; then
7     mkdir "${XDG_RUNTIME_DIR}"
8     chmod 0700 "${XDG_RUNTIME_DIR}"
9   fi
10 fi
11
12 # Make TMPDIR
13 mkdir -p "/tmp/${USER}"
14 chmod 770 "/tmp/${USER}"
15
16 export QT_QPA_PLATFORM=wayland-egl
17
18 if [ -f ~/.Xresources ]; then
19   cat ~/.Xresources > ~/.Xdefaults
20   if [ -f ~/.Xresources.$HOSTNAME ]; then
21     cat ~/.Xresources.$HOSTNAME >> ~/.Xdefaults
22   fi
23 fi
24
25 if [ -f ~/.config/termite/config.base ]; then
26   cat ~/.config/termite/config.base ~/.config/termite/config.${HOSTNAME} > \
27         ~/.config/termite/config
28 fi
29
30
31 # make less more friendly for non-text input files, see lesspipe(1)
32 if [ -x /usr/bin/lesspipe ]; then 
33   export LESSOPEN="|lesspipe %s"
34 elif [ -x /usr/bin/lesspipe.sh ]; then 
35   export LESSOPEN="|lesspipe %s"
36 fi
37
38 # colored GCC warnings and errors
39 export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
40