10 lines
347 B
Bash
10 lines
347 B
Bash
# vim: filetype=sh
|
|
# .bashrc.d/toolbox
|
|
|
|
# toolbox customisation
|
|
## toolbox path customisation
|
|
if [[ "$(cat /proc/sys/kernel/hostname)" = "toolbox" ]] ; then
|
|
PATH=$(echo $PATH | sed -e 's;:\?/var/lib/flatpak/exports/bin;;' -e 's;/var/lib/flatpak/exports/bin:\?;;')
|
|
pathmunge $HOME/.local/toolbox/bin after
|
|
export TERM=xterm-256color
|
|
fi
|