module loader only ticks basename (small terminal support)

This commit is contained in:
Nicole O'Connor 2020-11-24 23:15:51 -08:00
parent 1b42d91d5b
commit 42c2e3315d
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ source ~/.local/share/zeesh/base/updates.zsh
# TODO: handle whether or not to load given modules]
for module in ~/.local/share/zeesh/modules/*.zsh; do
ticker_message "zeesh: loading module ${module}"
ticker_message "zeesh: loading module $(basename ${module}}"
source ${module}
done