Taskbar-Lyrics
BetterNCM插件,在任务栏上嵌入歌词,目前仅建议Windows 11
File Explorer
Download Latest Version (.zip)- manifest.json
- native.dll
- plugin.js
- preview.png
- Config.cppm
- Plugin.cppm
- Receiver.cppm
- Handler.cppm
- Registry.cppm
- Taskbar.cppm
- Lyrics.cppm
- Renderer.cppm
- Window.cppm
- DllMain.cpp
- CMakeLists.txt
- CMakePresets.json
- config.js
- lyrics.js
- main.js
- view.js
- package-lock.json
- package.json
- rollup.config.js
- manifest.json
- preview.png
- .gitignore
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/mo-jinran/Taskbar-Lyrics
Downloads the entire project code from GitHub to your computer.
cd Taskbar-Lyrics
Moves into the project folder you just downloaded.
2. CMake
Medium RecommendedPrerequisites
⚠️ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd plugin/cpp
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
Check that an executable was created inside the build folder, then run it directly (e.g. ./build/app_name).
3. Node.js
EasyPrerequisites
⚠️ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
cd plugin/js
This project's files live in a subfolder, so move into it first.
npm install
Downloads and installs the libraries listed in package.json.
npm start
Starts the development/run server.
After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.
// repository documentation
Was this content helpful?
(0 ratings)
