mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-10 04:26:17 +02:00
modify Plugin:themes, better support for custom themes
This commit is contained in:
parent
ee343814b7
commit
e0ee99a7b5
1 changed files with 26 additions and 15 deletions
|
|
@ -11,6 +11,9 @@ function theme
|
||||||
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
|
if [ -f "$ZSH_CUSTOM/$1.zsh-theme" ]
|
||||||
then
|
then
|
||||||
source "$ZSH_CUSTOM/$1.zsh-theme"
|
source "$ZSH_CUSTOM/$1.zsh-theme"
|
||||||
|
elif [ -f "$ZSH_CUSTOM/themes/$1.zsh-theme" ]
|
||||||
|
then
|
||||||
|
source "$ZSH_CUSTOM/themes/$1.zsh-theme"
|
||||||
else
|
else
|
||||||
source "$ZSH/themes/$1.zsh-theme"
|
source "$ZSH/themes/$1.zsh-theme"
|
||||||
fi
|
fi
|
||||||
|
|
@ -19,6 +22,14 @@ function theme
|
||||||
|
|
||||||
function lstheme
|
function lstheme
|
||||||
{
|
{
|
||||||
cd $ZSH/themes
|
# default themes
|
||||||
ls *zsh-theme | sed 's,\.zsh-theme$,,'
|
ls $ZSH/themes | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
|
||||||
|
|
||||||
|
# custom themes
|
||||||
|
ls $ZSH_CUSTOM | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
|
||||||
|
|
||||||
|
if [ -d "$ZSH_CUSTOM/themes" ]
|
||||||
|
then
|
||||||
|
ls $ZSH_CUSTOM/themes | grep '.zsh-theme$' | sed 's,\.zsh-theme$,,'
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue