Add theme lowfi-neon

This commit is contained in:
Ceda EI 2019-07-18 17:16:19 +05:30
parent 78253e1939
commit d9e86e4421
1 changed files with 15 additions and 0 deletions

15
themes/lowfi-neon.sh Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
WISH_POWERLINE=0
local i
local gradient=(e7c547 c0e551 82e35a 62e177 6bdfb3 73d4dd 7aa6da)
local j=0
for i in ${WISH_PLUGINS[@]}; do
[[ $i == "newline" ]] && j=0 && continue
eval WISH_$(echo $i | tr '[:lower:]' '[:upper:]')_BG=-1
eval WISH_$(echo $i | tr '[:lower:]' '[:upper:]')_FG=${gradient[$j]}
((j++))
if [[ $j -eq ${#gradient[@]} ]]; then
j=0
fi
done