In-development Music Player made with Adwaita. 
The name is a recursive acronym: Vibe is based on extensions.
Warning
This is still in development and doesn't work yet!
This is only a demonstration, some UI elements don't work as intended.

- Play(and maybe stream from tcp/udp) music
- Implement MPRIS
- Use TypeScript and Gnim with GJS
- Internationalization (i18n)
- Pretty attractive but familiar interface
- Plugin support (for adding new sources and features...)
This will guide you on how to develop for the Vibe Music Player.
To learn how to use build modifiers, most of the commands provide
a help message that you can trigger with -h.
You can run:
git clone https://github.com/retrozinndev/vibe.gitor, if you have GitHub CLI:
gh repo clone retrozinndev/vibeYou need to build types before starting to develop: this will let TypeScript know which libraries from the GI Repository(GIR) are available to be used in the project, and also integrating autocompletion, thanks to gjsify/ts-for-gir.
You can do so by running
pnpm typesAfter that, you probably won't need to do this again. But it's good to keep them updated, so you'll know when a library has updated.
To build the app, you can use
pnpm buildBut if you want a development build(and a faster way to test), use
pnpm devwhich will build the app and run it right away(replaces the currently-running instance).
Although it's recommended to use pnpm dev to test builds, you can also run by using
pnpm startwhich will only start the app build(won't build the app again)
To build a release version of the app, you can run
pnpm build:releaseor the simplified command
pnpm releaseYou can clean the default build directory by running
pnpm clean