14 lines
153 B
Bash
14 lines
153 B
Bash
themes=(
|
|
casper
|
|
attila
|
|
london
|
|
massively
|
|
bleak
|
|
the-shell
|
|
vapor
|
|
)
|
|
|
|
for theme in "${themes[@]}"
|
|
do
|
|
cp -Rf "node_modules/$theme" content/themes
|
|
done
|