mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
9 lines
168 B
Bash
9 lines
168 B
Bash
set_theme() {
|
|
source "$ZSH/themes/$ZSH_THEME.zsh-theme"
|
|
}
|
|
|
|
random_theme() {
|
|
local themes
|
|
themes=($ZSH/themes/*zsh-theme)
|
|
source "$themes[$RANDOM%$#themes+1]"
|
|
}
|