### overline-zebar Configuration Example Source: https://github.com/mushfikurr/overline-zebar/blob/main/README.md Provides an example of the configuration values for the overline-zebar widget, including paths, boolean flags, and dimension settings. These values can be customized in the 'config.json' file. ```json { "FLOW_LAUNCHER_PATH": "C:\\Users\\msy\\AppData\\Local\\FlowLauncher\\Flow.Launcher.exe", "USE_AUTOTILING": true, "AUTOTILING_WEBSOCKET_URI": "ws://localhost:6123", "MEDIA_MAX_WIDTH": "300" } ``` -------------------------------- ### Clone Repository and Install Dependencies Source: https://github.com/mushfikurr/overline-zebar/blob/main/README.md Clones the overline-zebar repository and installs necessary Node.js dependencies for development. This is a prerequisite for building from source. ```sh git clone https://github.com/mushfikurr/overline-zebar.git cd overline-zebar npm install ``` -------------------------------- ### Start Build Process with Hot Reloading Source: https://github.com/mushfikurr/overline-zebar/blob/main/README.md Starts the build process for overline-zebar with hot reloading enabled. This allows developers to see live changes in Zebar as they edit the code. ```sh npm run build:watch ``` -------------------------------- ### Build Project for Production Source: https://github.com/mushfikurr/overline-zebar/blob/main/README.md Builds the overline-zebar project for production, creating a 'dist' folder with the compiled widget. This command is used after installing dependencies and configuring the widget. ```sh npm run build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.