10 lines
330 B
Bash
10 lines
330 B
Bash
#!/usr/bin/env -S bash -c 'echo "Not a user script. source(aka .) only"'
|
|
|
|
if is_cmd broot; then
|
|
. <(broot --print-shell-function "${SHELL##*/}")
|
|
[[ -n "$( printf '%s' ~/.config/broot/launcher/installed* )" ]] 2> /dev/null \
|
|
|| broot --set-install-state installed
|
|
fi
|
|
|
|
# vim: set ft=sh expandtab tabstop=4 shiftwidth=4:
|