Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
d19e01b1
Commit
d19e01b1
authored
Dec 02, 2012
by
Robby Russell
Browse files
Merge pull request #1191 from r-darwish/themes-plugin
Themes plugin
parents
275e7cba
f7b1615b
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/themes/_theme
0 → 100644
View file @
d19e01b1
#compdef theme
_arguments "1: :($(lstheme | tr "\n" " "))"
plugins/themes/themes.plugin.zsh
0 → 100644
View file @
d19e01b1
function
theme
{
if
[
"
$1
"
=
"random"
]
;
then
themes
=(
$ZSH
/themes/
*
zsh-theme
)
N
=
${#
themes
[@]
}
((
N
=(
RANDOM%N
)
+1
))
RANDOM_THEME
=
${
themes
[
$N
]
}
source
"
$RANDOM_THEME
"
echo
"[oh-my-zsh] Random theme '
$RANDOM_THEME
' loaded..."
else
if
[
-f
"
$ZSH_CUSTOM
/
$1
.zsh-theme"
]
then
source
"
$ZSH_CUSTOM
/
$1
.zsh-theme"
else
source
"
$ZSH
/themes/
$1
.zsh-theme"
fi
fi
}
function
lstheme
{
cd
$ZSH
/themes
ls
*
zsh-theme |
sed
's,\.zsh-theme$,,'
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment