├── manifest.json └── README.md /manifest.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "name": "The Eternal Jukebox (Beta)", 4 | "description": "Loop a song infinitely and (almost) seamlessly.", 5 | "preview": "preview.png", 6 | "readme": "README.md", 7 | "branch": "dist/eternal-jukebox", 8 | "tags": ["beta"] 9 | }, 10 | { 11 | "name": "Better local files", 12 | "description": "View your local songs, albums and artists.", 13 | "preview": "preview.png", 14 | "readme": "README.md", 15 | "branch": "dist/better-local-files", 16 | "tags": ["local files", "library"] 17 | }, 18 | { 19 | "name": "Playlist maker", 20 | "description": "Create playlists from a drag and drop editor.", 21 | "preview": "preview.png", 22 | "readme": "README.md", 23 | "branch": "dist/playlist-maker", 24 | "tags": ["playlist"] 25 | } 26 | ] 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # How to install the custom apps 2 | 3 | ## Eternal Jukebox 4 | 5 | 1. Run `spicetify config-dir` to open the spicetify folder. 6 | 2. Go to the `CustomApps` folder. 7 | 3. Create a `eternal-jukebox` folder. 8 | 4. Download the custom app files as a zip from [here](https://github.com/Pithaya/spicetify-apps-dist/archive/refs/heads/dist/eternal-jukebox.zip). 9 | 5. Extract the zip and put the files inside the folder you created in step 3. 10 | 11 | Then, run the following commands: 12 | 13 | ```sh 14 | spicetify config custom_apps eternal-jukebox 15 | spicetify apply 16 | ``` 17 | 18 | ## Better local files 19 | 20 | 1. Run `spicetify config-dir` to open the spicetify folder. 21 | 2. Go to the `CustomApps` folder. 22 | 3. Create a `better-local-files` folder. 23 | 4. Download the custom app files as a zip from [here](https://github.com/Pithaya/spicetify-apps-dist/archive/refs/heads/dist/better-local-files.zip). 24 | 5. Extract the zip and put the files inside the folder you created in step 3. 25 | 26 | Then, run the following commands: 27 | 28 | ```sh 29 | spicetify config custom_apps better-local-files 30 | spicetify apply 31 | ``` 32 | 33 | ## Playlist maker 34 | 35 | 1. Run `spicetify config-dir` to open the spicetify folder. 36 | 2. Go to the `CustomApps` folder. 37 | 3. Create a `playlist-maker` folder. 38 | 4. Download the custom app files as a zip from [here](https://github.com/Pithaya/spicetify-apps-dist/archive/refs/heads/dist/playlist-maker.zip). 39 | 5. Extract the zip and put the files inside the folder you created in step 3. 40 | 41 | Then, run the following commands: 42 | 43 | ```sh 44 | spicetify config custom_apps playlist-maker 45 | spicetify apply 46 | ``` 47 | 48 | # How to uninstall the custom apps 49 | 50 | ## Eternal Jukebox 51 | 52 | 1. Run `spicetify config-dir` to open the spicetify folder 53 | 2. Go to the `CustomApps` folder 54 | 3. Delete the `eternal-jukebox` folder 55 | 56 | Then, run the following commands: 57 | 58 | ```sh 59 | spicetify config custom_apps eternal-jukebox- 60 | spicetify apply 61 | ``` 62 | 63 | ## Better local files 64 | 65 | 1. Run `spicetify config-dir` to open the spicetify folder 66 | 2. Go to the `CustomApps` folder 67 | 3. Delete the `better-local-files` folder 68 | 69 | Then, run the following commands: 70 | 71 | ```sh 72 | spicetify config custom_apps better-local-files- 73 | spicetify apply 74 | ``` 75 | 76 | ## Playlist maker 77 | 78 | 1. Run `spicetify config-dir` to open the spicetify folder 79 | 2. Go to the `CustomApps` folder 80 | 3. Delete the `playlist-maker` folder 81 | 82 | Then, run the following commands: 83 | 84 | ```sh 85 | spicetify config custom_apps playlist-maker- 86 | spicetify apply 87 | ``` 88 | --------------------------------------------------------------------------------