# Setup Bedrock without installing twentyten->twentynineteen themes

**URL:** https://discourse.roots.io/t/setup-bedrock-without-installing-twentyten-twentynineteen-themes/16704
**Category:** bedrock
**Created:** 2019-09-27T20:54:31Z
**Posts:** 3

## Post 1 by @nmakris — 2019-09-27T20:54:31Z

Looked through all the documentation and searched through the threads here, but am not seeing where to adjust this. When running `composer install` or `composer update`, I don’t want the package to install the default WP themes. Is there a way to omit this entirely?

---

## Post 2 by @nmakris — 2019-10-23T19:50:39Z

Since I haven’t seen anything in 26d from anyone, I’m going to post my temporary solution. This is in place as it’s set to a boilerplate repo so far. By calling to `@remove-default` I’m able to ensure that the Hello Dolly and the themes are removed if they’re reinstalled.

```
"scripts": {
	"post-update-cmd": ["@remove-default"],
	"post-root-package-install": [
		"php -r \"copy('.env.example', '.env');\"",
		"@remove-default"
	],
	"test": ["phpcs"],
	"remove-default": [
		"rm -rf web/wp/wp-content/themes/*",
		"rm -rf web/wp/wp-content/plugins/hello.php"
	],
	"reset-plugins": "rm -rf web/app/plugins"
},
```

---

## Post 3 by @system — 2019-11-08T20:54:31Z

This topic was automatically closed after 42 days. New replies are no longer allowed.
