Files
boxtools/to_home/.bash_profile
Markus Zolliker 99580aad78 introduce 'to_home' and systemd user services
- frappy is now a systemd user service
- add 'frappy' and 'boxweb' bash function
2025-05-28 11:54:21 +02:00

13 lines
243 B
Bash

# helper for adding to PATH without duplicates
pathadd() {
if [ -d "$1" ] && [[ ":$PATH:" != *":$1:"* ]]; then
PATH="${PATH:+"$PATH:"}$1"
fi
}
pathadd ~/bin
pathadd ~/.local/bin
pathadd ~/frappy/bin
. ~/.config/linse_profile