A wallpaper plugin for Lively Wallpaper for Windows. Displays the computer's audio as a spectrum of dots.
- Download the latest version of the Audio Dot from the releases page.
- Drag the
.zip
file into Lively. - Set the
Audio Dot
wallpaper with a click. - Play music and enjoy!
You can customize the appearance via the right-click on the Lively UI.
- Lively Wallpaper
- Node.js (v18.15.0 LTS) (Restart computer after install)
- 7zip (For building)
git clone https://github.com/DigitalNaut/AudioDotVisualizer.git && cd AudioDotVisualizer && git checkout main && git pull origin main
npm install # OR pnpm install OR yarn install
code .
I've provided a script that will build the project from TypeScript into JavaScript and package it into a .zip
file in the /dist
folder using 7zip. Note that it'll also minifiy the JavaScript code.
npm run build # OR pnpm build OR yarn build
I've also added two more scripts:
One to check the TypeScript code for type errors.
npm run typecheck # OR pnpm typecheck OR yarn typecheck
And another to delete the generated files in the /dist
and /build
folders.
npm run purge # OR pnpm purge OR yarn purge
Unfortunately, I haven't figured out how to automate the importing of the project into Lively or run then project directly from the source code, so you'll have to build the project first and then import it manually:
- Open Lively Wallpaper.
- Open the
/dist
folder (it'll open automatically with thenpm run build
command). - Drag the
AudioDot_vX.X.X.zip
file into Lively Wallpaper. - Set the
Audio Dot
wallpaper with the latest changes.