Commit 542415b9 authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #355 from watsoncj/master^1

Fix to Random Theme Selection
parents 2440954f 5c1b3411
...@@ -31,7 +31,7 @@ if [ "$ZSH_THEME" = "random" ] ...@@ -31,7 +31,7 @@ if [ "$ZSH_THEME" = "random" ]
then then
themes=($ZSH/themes/*zsh-theme) themes=($ZSH/themes/*zsh-theme)
N=${#themes[@]} N=${#themes[@]}
((N=RANDOM%N)) ((N=(RANDOM%N)+1))
RANDOM_THEME=${themes[$N]} RANDOM_THEME=${themes[$N]}
source "$RANDOM_THEME" source "$RANDOM_THEME"
echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..." echo "[oh-my-zsh] Random theme '$RANDOM_THEME' loaded..."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment