I installed several Jekyll-Bootstrap themes using rake as described here.
rake theme:install git="https://github.com/jekyllbootstrap/theme-the-program.git"
How do I uninstall the themes I don't want? Do I need to manually delete all the associated files?
Just to make sure this goes down as answered, I want to put down what David Jacquel said in his comments:
File folders for themes are stored in
_includes/themes
andassets/themes
. Delete these and your unwanted themes will be gone.A second option for removal, which I'm not positive about, is to run the reverse of what you did to install, in your case:
rake theme:uninstall git="https://github.com/jekyllbootstrap/theme-the-program.git"
. For others, it might begem uninstall [theme-gem-name]
if you installed the theme that way.