11 lines
347 B
Text
11 lines
347 B
Text
|
# 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
|