feat: initial commit

This commit is contained in:
trafficlunar 2026-03-03 18:32:00 +00:00
commit 8c98c2624b
10 changed files with 4153 additions and 0 deletions

10
src/app.tsx Normal file
View file

@ -0,0 +1,10 @@
async function main() {
while (!Spicetify?.showNotification) {
await new Promise((resolve) => setTimeout(resolve, 100));
}
// Show message on start.
Spicetify.showNotification("Hello!");
}
export default main;