1
0
mirror of https://gitlab.com/ceda_ei/wish synced 2025-07-05 18:56:52 +02:00
wish/wish.sh
2019-02-15 19:57:48 +05:30

22 lines
537 B
Bash

#!/usr/bin/env bash
function wish_init() {
# Source all plugins
for i in ${WISH_PLUGINS[@]}; do
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
# Source theme
WISH_THEME=${WISH_THEME:-plain}
for i in "$XDG_CONFIG_HOME" "/usr/share" "$HOME/.config"; do
source "$i/wish/themes/$WISH_THEME.sh" &> /dev/null && break
done
[[ $? -ne 0 ]] && echo "Theme $WISH_THEME not found." >&2
}
wish_init