mirror of https://gitlab.com/ceda_ei/wish
Wrap init in a function
This commit is contained in:
parent
30671c610f
commit
3440f16b56
28
wish.sh
28
wish.sh
|
@ -1,17 +1,21 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Source all plugins
|
function wish_init() {
|
||||||
for i in ${WISH_PLUGINS[@]}; do
|
# Source all plugins
|
||||||
for j in "$XDG_CONFIG_HOME" "/usr/share" "$HOME/.config"; do
|
for i in ${WISH_PLUGINS[@]}; do
|
||||||
source "$j/wish/plugins/$i.sh" &> /dev/null && break
|
for j in "$XDG_CONFIG_HOME" "/usr/share" "$HOME/.config"; do
|
||||||
|
source "$j/wish/plugins/$i.sh" &> /dev/null && break
|
||||||
|
done
|
||||||
|
[[ $? -ne 0 ]] && echo "Plugin $i not found." >&2
|
||||||
done
|
done
|
||||||
[[ $? -ne 0 ]] && echo "Plugin $i not found." >&2
|
|
||||||
done
|
|
||||||
|
|
||||||
# Source theme
|
# Source theme
|
||||||
WISH_THEME=${WISH_THEME:-plain}
|
WISH_THEME=${WISH_THEME:-plain}
|
||||||
for i in "$XDG_CONFIG_HOME" "/usr/share" "$HOME/.config"; do
|
for i in "$XDG_CONFIG_HOME" "/usr/share" "$HOME/.config"; do
|
||||||
source "$i/wish/themes/$WISH_THEME.sh" &> /dev/null && break
|
source "$i/wish/themes/$WISH_THEME.sh" &> /dev/null && break
|
||||||
done
|
done
|
||||||
|
|
||||||
[[ $? -ne 0 ]] && echo "Theme $WISH_THEME not found." >&2
|
[[ $? -ne 0 ]] && echo "Theme $WISH_THEME not found." >&2
|
||||||
|
}
|
||||||
|
|
||||||
|
wish_init
|
||||||
|
|
Loading…
Reference in New Issue