oh-my-zsh/tools/theme_chooser.sh
2011-07-24 20:51:27 +02:00

49 lines
2.4 KiB
Bash
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/sh
# Zsh Theme Chooser by fox (fox91 at anche dot no)
# This program is free software. It comes without any warranty, to
# the extent permitted by applicable law. You can redistribute it
# and/or modify it under the terms of the Do What The Fuck You Want
# To Public License, Version 2, as published by Sam Hocevar. See
# http://sam.zoy.org/wtfpl/COPYING for more details.
THEMES_DIR="$ZSH/themes"
FAVLIST="${HOME}/.zsh_favlist"
function noyes() {
read -p "$1 [y/N] " a
if [[ $a == "N" || $a == "n" || $a = "" ]]; then
return 0
fi
return 1
}
function theme_preview() {
THEME=$1
THEME_NAME=`echo $THEME | sed s/\.zsh-theme//`
export ZDOTDIR="$(mktemp -d tmp.zshXXXX)"
cat <<-EOF >"$ZDOTDIR/.zshrc"
ZSH_THEME="$THEME_NAME"
source $ZSH/oh-my-zsh.sh
EOF
zsh
rm -rf "$ZDOTDIR"
echo
noyes "Do you want to add it to your favourite list ($FAVLIST)?" || \
echo $THEME_NAME >> $FAVLIST
echo
}
echo
echo "╺━┓┏━┓╻ ╻ ╺┳╸╻ ╻┏━╸┏┳┓┏━╸ ┏━╸╻ ╻┏━┓┏━┓┏━┓┏━╸┏━┓"
echo "┏━┛┗━┓┣━┫ ┃ ┣━┫┣╸ ┃┃┃┣╸ ┃ ┣━┫┃ ┃┃ ┃┗━┓┣╸ ┣┳┛"
echo "┗━╸┗━┛╹ ╹ ╹ ╹ ╹┗━╸╹ ╹┗━╸ ┗━╸╹ ╹┗━┛┗━┛┗━┛┗━╸╹┗╸"
echo
for i in $(ls $THEMES_DIR); do
echo "Now showing theme $i"
theme_preview $i
done