mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
14 lines
243 B
Bash
14 lines
243 B
Bash
set_theme() {
|
|
local theme
|
|
|
|
theme=({$OMZ,$ZSH}/themes/$1-theme(N))
|
|
source $theme[1]
|
|
}
|
|
|
|
random_theme() {
|
|
local themes
|
|
themes=($ZSH/themes/*zsh-theme(N))
|
|
source "$themes[$RANDOM%$#themes+1]"
|
|
}
|
|
|
|
# compdef "_files -g '*.zsh'" set_theme
|