blob: 11c7c0c3bdf756b3aab416c6947aa39e16e7d031 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
post_install() {
# Abridged version of https://github.com/spicetify/spicetify-marketplace/wiki/Installation#manual-install-recommended
echo "Run the following command to enable the marketplace app:"
echo ""
echo "spicetify config custom_apps marketplace"
echo "spicetify apply"
echo ""
echo "To install themes using Spicetify Marketplace, run the following commands:"
echo ""
echo "spicetify config inject_css 1"
echo "spicetify config replace_colors 1"
echo "spicetify config current_theme marketplace"
}
post_upgrade() {
echo "Run spicetify apply to apply the marketplace update."
}
|