themes plugin now picks a random theme if no argument is provided.

This commit is contained in:
Kaiwen Xu 2013-10-28 11:06:10 -04:00
Родитель 90c28b786a
Коммит f731d6c16f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1,6 +1,6 @@
function theme
{
if [ "$1" = "random" ]; then
if [ -z "$1" ] || [ "$1" = "random" ]; then
themes=($ZSH/themes/*zsh-theme)
N=${#themes[@]}
((N=(RANDOM%N)+1))