dotfiles_fish_server/functions/fish_list_themes.fish

7 lines
194 B
Fish

function fish_list_themes --description "List available prompt themes"
for theme in $__fish_sysconf_dir/themes/*
if test -d $theme
basename $theme
end
end
end