Add function to list favorite themes

This commit is contained in:
Luke Lee 2011-06-03 19:03:51 -05:00
commit cfd683a991

View file

@ -50,6 +50,12 @@ function extract() {
fi fi
} }
function favorite_themes() {
for theme in `ls $FAVORITE_THEMES_DIR`; do
echo $theme
done
}
function get_current_theme() { function get_current_theme() {
echo `basename $RANDOM_THEME` echo `basename $RANDOM_THEME`
} }