How to quickly enable or disable and control your Drupal theme using DRUSH

Drush can do so many things specially during development of a Drupal Website and this includes working with theme of your website. Here are some drush command for manipulating theme that I find very useful and handy to memorize while you are working within your drupal site. Screen shot will show you, the code is written below:

Drush command written below.

Code

1.) Enable theme
drush pm-enable themename

2.) Disable theme
drush pm-disable themename

3.) Show information about the theme
drush pm-info themename

4.) List all theme
drush pm-list --type=theme

5.) List enabled theme
drush pm-list --type=theme --status=enabled

6.) Set default theme
drush vset theme_default themename

7.) Set admin theme
drush vset admin_theme themename

8.) show theme status
drush status theme