diff --git a/STARTERKIT/STARTERKIT.info.txt b/STARTERKIT/STARTERKIT.info.txt
index d19e3be..350e00d 100644
--- a/STARTERKIT/STARTERKIT.info.txt
+++ b/STARTERKIT/STARTERKIT.info.txt
@@ -124,18 +124,18 @@ features[] = secondary_menu
 
 ; Set the default values of settings on the theme-settings.php form.
 
-settings[zen_breadcrumb]           = yes
-settings[zen_breadcrumb_separator] = ' › '
-settings[zen_breadcrumb_home]      = 1
-settings[zen_breadcrumb_trailing]  = 0
-settings[zen_breadcrumb_title]     = 0
-settings[zen_skip_link_anchor]     = main-menu
-settings[zen_skip_link_text]       = Jump to navigation
-settings[zen_html5_respond_meta][] = respond
-settings[zen_html5_respond_meta][] = html5
-settings[zen_html5_respond_meta][] = meta
-settings[zen_rebuild_registry]     = 1
-settings[zen_wireframes]           = 0
+settings[STARTERKIT_breadcrumb]           = yes
+settings[STARTERKIT_breadcrumb_separator] = ' › '
+settings[STARTERKIT_breadcrumb_home]      = 1
+settings[STARTERKIT_breadcrumb_trailing]  = 0
+settings[STARTERKIT_breadcrumb_title]     = 0
+settings[STARTERKIT_skip_link_anchor]     = main-menu
+settings[STARTERKIT_skip_link_text]       = Jump to navigation
+settings[STARTERKIT_html5_respond_meta][] = respond
+settings[STARTERKIT_html5_respond_meta][] = html5
+settings[STARTERKIT_html5_respond_meta][] = meta
+settings[STARTERKIT_rebuild_registry]     = 1
+settings[STARTERKIT_wireframes]           = 0
 
 ; To make this sub-theme an admin theme with shortcut links next to titles,
 ; uncomment the line below.
diff --git a/zen-internals/zen.drush.inc b/zen-internals/zen.drush.inc
index fa6edb2..35f9f4f 100644
--- a/zen-internals/zen.drush.inc
+++ b/zen-internals/zen.drush.inc
@@ -79,6 +79,7 @@ function drush_zen($name = NULL, $machine_name = NULL) {
   drush_op('zen_file_str_replace', $subtheme_info_file, array_keys($alterations), $alterations);
 
   // Replace all occurrences of 'STARTERKIT' with the machine name of our sub theme.
+  drush_op('zen_file_str_replace', $subtheme_path . '/' . $machine_name . '.info' , 'STARTERKIT', $machine_name);
   drush_op('zen_file_str_replace', $subtheme_path . '/theme-settings.php', 'STARTERKIT', $machine_name);
   drush_op('zen_file_str_replace', $subtheme_path . '/template.php', 'STARTERKIT', $machine_name);
 
