diff --git a/README.md b/README.md index 326e041..9266476 100644 --- a/README.md +++ b/README.md @@ -1,45 +1,95 @@ -# HyprPanel wallbash template +# HyprPanel Wallbash Template ![241005_14h24m09s_screenshot](https://github.com/user-attachments/assets/355aa7f0-856b-47f6-8ced-58bc0c4a3481) ![241005_14h26m11s_screenshot](https://github.com/user-attachments/assets/e7551bec-573c-4d37-91b9-de9400176cac) ![241005_14h19m51s_screenshot](https://github.com/user-attachments/assets/11f40837-08fe-4979-b16e-b1d0a6fd4fcd) +## Wallbash Template for HyprPanel -### Wallbash Template for HyprPanel +This template is designed for use with the latest version of [HyprPanel](https://hyprpanel.com/) (Astal-based). -This template is designed for use with HyprPanel. For more information, visit [HyprPanel](https://hyprpanel.com/). +> **NOTE:** This is not a standalone package. Ensure you have HyDE installed and a working HyprPanel setup. +> **COMPATIBILITY:** This template has been updated to support the new `astal` backend of HyprPanel. If you are using an older version of HyprPanel based on `ags`, you might need to use an older version of this repository. -> **NOTE:** This is not a standalone package. Ensure you have HyDe installed and a working HyprPanel setup. +## Available Templates (Default vs Split) + +Because of how HyprPanel handles button styling, this repository provides two different `.dcol` files. You must choose **only one** based on your HyprPanel settings: + +* **`hyprpanel.dcol`**: Designed for the regular/default bar style. + image + +* **`hyprpanel_split.dcol`**: Specifically adapted for the split button style (where the icon sits on top of a background). + image + + * *To use this template, you must enable it in HyprPanel:* Go to **Settings -> Bar -> Button Style -> change from `default` to `split`**. + image + ## Usage -Add the file [/hyprpanel.dcol](https://github.com/HyDE-Project/HyprPanel/blob/3f20c8922d7c3547688a2b16eb74846170a9f224/hyprpanel.dcol) to either `~/.config/hyde/wallbash/Wall-Ways` or `~/.config/hyde/wallbash/Wall-Dcol`. +Download your desired template (`hyprpanel.dcol` **OR** `hyprpanel_split.dcol`) and place it in either `~/.config/hyde/wallbash/always/` or `~/.config/hyde/wallbash/theme/`. + +### Directory Differences -### Difference Between Wall-Ways and Wall-Dcol +According to the HyDE documentation, the directory you choose changes when the template is executed: -- **Wall-Ways**: This file is always used regardless of the theme mode or wallbash mode. -- **Wall-Dcol**: This file attempts to find the theme template (if in theme mode) and falls back to using the dominant color of the wallpapers if no template is available. +- **`always/`**: Templates placed here are executed during a **Theme switch**, **Wallpaper switch**, or **Mode switch**. +- **`theme/`**: Templates placed here are executed **only** during a **Theme switch** or **Mode switch**. ### Using This Template for Themes 1. **Header Line**: + The `.dcol` file must start with the following target and command (header line) to properly trigger the Astal theme update: ```sh - ${cacheDir}/landing/wallbash-hyprpanel.json | ags -r "useTheme('${cacheDir}/landing/wallbash-hyprpanel.json')" + ${cacheDir}/landing/wallbash-hyprpanel.json | astal -i hyprpanel useTheme ${cacheDir}/landing/wallbash-hyprpanel.json ``` - This command sets the theme using the cached wallbash-generated `.json` file. - `$cacheDir` is the path to `~/.cache/hyde/`. + This generates the `wallbash-hyprpanel.json` file in your cache and immediately pipes the command to Astal to apply the theme in HyprPanel. -2. **Wallbash Generation**: +2. **Manual/Optional Command**: + If you need to trigger the theme reload manually via terminal, you can run: ```sh - ${cacheDir}/landing/wallbash-hyprpanel.json + astal -i hyprpanel useTheme ~/.cache/hyde/landing/wallbash-hyprpanel.json ``` - This command generates the wallbash `.json` file. -3. **Optional Command**: +## Matugen Compatibility + +By default, this template is fully compatible as long as you **do not use Matugen**. + +If Matugen is enabled, it forces its own color overrides onto the bar's theme, which conflicts with this Wallbash template. If you still want to use both together, you must set up a custom workaround to trigger Matugen correctly: + +1. **Create a script** (e.g., `hyprpanel_matugen.sh`) in your `~/.config/hyde/wallbash/scripts/` directory. This script must automatically inject the new wallpaper path into HyprPanel's `config.json` (specifically editing the `"wallpaper.image": "/path/to/your/image"` line). +2. **Create a trigger `.dcol` file** in your `~/.config/hyde/wallbash/always/` directory. This file acts as a dummy to call your script every time the wallpaper changes. The file should look like this: ```sh - ags -r "useTheme('${cacheDir}/landing/wallbash-hyprpanel.json')" + /tmp/hyprpanel_trigger.txt|bash $WALLBASH_SCRIPTS/hyprpanel_matugen.sh + # Dummy file to trigger Matugen config update on wallpaper change ``` - This command uses the cached wallbash-generated `.json` file to set the theme. +3. By dynamically changing this image path with the newly applied Wallbash wallpaper, you force Matugen to trigger and overwrite the colors correctly, allowing both systems to work side by side. + +
+💡 Click here for an example of the Bash script + +You can use `jq` to safely edit the `config.json` file, and `readlink` to get the current wallpaper applied by HyDE. + +**`~/.config/hyde/wallbash/scripts/hyprpanel_matugen.sh`**: +```bash +#!/bin/bash + +# Path to your HyprPanel config +CONFIG_FILE="$HOME/.config/hyprpanel/config.json" + +# Get the current wallpaper set by HyDE/Wallbash +CURRENT_WALL=$(readlink -f ~/.cache/hyde/wall.set) + +# Use jq to update the wallpaper.image line safely +if command -v jq &> /dev/null && [ -f "$CONFIG_FILE" ]; then + jq --arg wp "$CURRENT_WALL" '."wallpaper.image" = $wp' "$CONFIG_FILE" > "${CONFIG_FILE}.tmp" && mv "${CONFIG_FILE}.tmp" "$CONFIG_FILE" +else + echo "Error: jq is not installed or config.json not found." +fi +``` +*(Make sure to make the script executable with `chmod +x ~/.config/hyde/wallbash/scripts/hyprpanel_matugen.sh`)* + +
## TODO - Dedicated installation @@ -48,7 +98,6 @@ Add the file [/hyprpanel.dcol](https://github.com/HyDE-Project/HyprPanel/blob/3f - Enhance the template by adding more contrast to some elements. - Avoid making breaking changes. -- Make readme comprehensive - Feel free to open a PR for color corrections! -[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/A) +[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/A) \ No newline at end of file diff --git a/hyprpanel.dcol b/hyprpanel.dcol index 0a0bab7..5d1ae4e 100644 --- a/hyprpanel.dcol +++ b/hyprpanel.dcol @@ -1,265 +1,400 @@ -${cacheDir}/landing/wallbash-hyprpanel.json | ags -r "useTheme('${cacheDir}/landing/wallbash-hyprpanel.json')" -{ - "theme.bar.menus.background": "#", +${cacheDir}/landing/wallbash-hyprpanel.json | astal -i hyprpanel useTheme ${cacheDir}/landing/wallbash-hyprpanel.json +{ + "cursor": "#", + "number": "#", + "parens": "#", + "result": "#", + "comment": "#", + "matched": "#", + "function": "#", + "operator": "#", + "variable": "#", + "scrollbar": "#", + "separator": "#", + "background": "#", + "editorbackground": "#", "theme.bar.background": "#", - "theme.bar.buttons.media.icon": "#", - "theme.bar.buttons.media.text": "#", - "theme.bar.buttons.icon": "#", - "theme.bar.buttons.text": "#", - "theme.bar.buttons.hover": "#", - "theme.bar.buttons.background": "#", - "theme.bar.menus.text": "#", - "theme.bar.menus.border.color": "#", - "theme.bar.buttons.media.background": "#", - "theme.bar.menus.menu.volume.text": "#", - "theme.bar.menus.menu.volume.card.color": "#", - "theme.bar.menus.menu.volume.label.color": "#", + "theme.bar.border.color": "#", + "theme.bar.menus.check_radio_button.background": "#", + "theme.bar.menus.check_radio_button.active": "#", + "theme.bar.menus.background": "#", "theme.bar.menus.popover.text": "#", - "theme.bar.menus.popover.background": "#", - "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#", + "theme.bar.menus.popover.background": "#", + "theme.bar.menus.popover.border": "#", + "theme.bar.menus.text": "#", + "theme.bar.menus.border.color": "#", + "theme.bar.menus.menu.power.border.color": "#", + "theme.bar.menus.menu.power.buttons.restart.background": "#", + "theme.bar.menus.menu.power.buttons.restart.text": "#", + "theme.bar.menus.menu.power.buttons.restart.icon_background": "#", + "theme.bar.menus.menu.power.buttons.restart.icon": "#", + "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#", + "theme.bar.menus.menu.power.buttons.shutdown.text": "#", + "theme.bar.menus.menu.power.buttons.shutdown.icon": "#", + "theme.bar.menus.menu.power.buttons.shutdown.background": "#", + "theme.bar.menus.menu.power.buttons.logout.icon": "#", + "theme.bar.menus.menu.power.buttons.logout.background": "#", + "theme.bar.menus.menu.power.buttons.logout.text": "#", + "theme.bar.menus.menu.power.buttons.logout.icon_background": "#", + "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#", + "theme.bar.menus.menu.power.buttons.sleep.text": "#", + "theme.bar.menus.menu.power.buttons.sleep.background": "#", + "theme.bar.menus.menu.power.buttons.sleep.icon": "#", + "theme.bar.menus.menu.power.background.color": "#", + "theme.bar.menus.menu.power.card.color": "#", + "theme.bar.menus.menu.notifications.pager.button": "#", + "theme.bar.menus.menu.notifications.scrollbar.color": "#", + "theme.bar.menus.menu.notifications.pager.label": "#", + "theme.bar.menus.menu.notifications.pager.background": "#", + "theme.bar.menus.menu.notifications.switch.puck": "#", + "theme.bar.menus.menu.notifications.switch.disabled": "#", + "theme.bar.menus.menu.notifications.switch.enabled": "#", + "theme.bar.menus.menu.notifications.clear": "#", + "theme.bar.menus.menu.notifications.switch_divider": "#", + "theme.bar.menus.menu.notifications.border": "#", + "theme.bar.menus.menu.notifications.card": "#", + "theme.bar.menus.menu.notifications.background": "#", + "theme.bar.menus.menu.notifications.no_notifications_label": "#", + "theme.bar.menus.menu.notifications.label": "#", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#", "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#", "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#", "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#", "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#", - "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#", - "theme.bar.menus.menu.notifications.switch.puck": "#", - "theme.bar.menus.menu.notifications.switch.disabled": "#", - "theme.bar.menus.menu.notifications.switch.enabled": "#", - "theme.bar.menus.menu.notifications.clear": "#", - "theme.bar.menus.menu.notifications.switch_divider": "#", - "theme.bar.menus.menu.notifications.border": "#", - "theme.bar.menus.menu.notifications.card": "#", - "theme.bar.menus.menu.notifications.background": "#", - "theme.bar.menus.menu.notifications.no_notifications_label": "#", - "theme.bar.menus.menu.notifications.label": "#", - "theme.bar.menus.menu.dashboard.monitors.disk.label": "#", - "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#", - "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#", - "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#", - "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#", - "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#", - "theme.bar.menus.menu.dashboard.monitors.ram.label": "#", - "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#", - "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#", - "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#", - "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#", - "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#", - "theme.bar.menus.menu.dashboard.monitors.bar_background": "#", - "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#", - "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#", - "theme.bar.menus.menu.dashboard.directories.right.top.color": "#", - "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#", - "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#", - "theme.bar.menus.menu.dashboard.directories.left.top.color": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#", "theme.bar.menus.menu.dashboard.controls.input.text": "#", - "theme.bar.menus.menu.dashboard.controls.input.background": "#", + "theme.bar.menus.menu.dashboard.controls.input.background": "#", "theme.bar.menus.menu.dashboard.controls.volume.text": "#", - "theme.bar.menus.menu.dashboard.controls.volume.background": "#", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#", "theme.bar.menus.menu.dashboard.controls.notifications.text": "#", - "theme.bar.menus.menu.dashboard.controls.notifications.background": "#", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#", "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#", - "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#", "theme.bar.menus.menu.dashboard.controls.wifi.text": "#", - "theme.bar.menus.menu.dashboard.controls.wifi.background": "#", - "theme.bar.menus.menu.dashboard.controls.disabled": "#", - "theme.bar.menus.menu.dashboard.shortcuts.recording": "#", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#", + "theme.bar.menus.menu.dashboard.controls.disabled": "#", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#", "theme.bar.menus.menu.dashboard.shortcuts.text": "#", - "theme.bar.menus.menu.dashboard.shortcuts.background": "#", - "theme.bar.menus.menu.dashboard.powermenu.sleep": "#", - "theme.bar.menus.menu.dashboard.powermenu.logout": "#", - "theme.bar.menus.menu.dashboard.powermenu.restart": "#", - "theme.bar.menus.menu.dashboard.profile.name": "#", - "theme.bar.menus.menu.dashboard.border.color": "#", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#", + "theme.bar.menus.menu.dashboard.profile.name": "#", + "theme.bar.menus.menu.dashboard.border.color": "#", "theme.bar.menus.menu.dashboard.background.color": "#", - "theme.bar.menus.menu.dashboard.card.color": "#", - "theme.bar.menus.menu.clock.weather.hourly.temperature": "#", - "theme.bar.menus.menu.clock.weather.hourly.icon": "#", - "theme.bar.menus.menu.clock.weather.hourly.time": "#", + "theme.bar.menus.menu.dashboard.card.color": "#", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#", + "theme.bar.menus.menu.clock.weather.hourly.time": "#", "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#", - "theme.bar.menus.menu.clock.weather.thermometer.cold": "#", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#", "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#", - "theme.bar.menus.menu.clock.weather.thermometer.hot": "#", - "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#", "theme.bar.menus.menu.clock.weather.stats": "#", - "theme.bar.menus.menu.clock.weather.status": "#", - "theme.bar.menus.menu.clock.weather.temperature": "#", - "theme.bar.menus.menu.clock.weather.icon": "#", - "theme.bar.menus.menu.clock.calendar.contextdays": "#", - "theme.bar.menus.menu.clock.calendar.days": "#", - "theme.bar.menus.menu.clock.calendar.currentday": "#", - "theme.bar.menus.menu.clock.calendar.paginator": "#", - "theme.bar.menus.menu.clock.calendar.weekdays": "#", - "theme.bar.menus.menu.clock.calendar.yearmonth": "#", - "theme.bar.menus.menu.clock.time.timeperiod": "#", - "theme.bar.menus.menu.clock.time.time": "#", - "theme.bar.menus.menu.clock.text": "#", - "theme.bar.menus.menu.clock.border.color": "#", + "theme.bar.menus.menu.clock.weather.status": "#", + "theme.bar.menus.menu.clock.weather.temperature": "#", + "theme.bar.menus.menu.clock.weather.icon": "#", + "theme.bar.menus.menu.clock.calendar.contextdays": "#", + "theme.bar.menus.menu.clock.calendar.days": "#", + "theme.bar.menus.menu.clock.calendar.currentday": "#", + "theme.bar.menus.menu.clock.calendar.paginator": "#", + "theme.bar.menus.menu.clock.calendar.weekdays": "#", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#", + "theme.bar.menus.menu.clock.time.timeperiod": "#", + "theme.bar.menus.menu.clock.time.time": "#", + "theme.bar.menus.menu.clock.text": "#", + "theme.bar.menus.menu.clock.border.color": "#", "theme.bar.menus.menu.clock.background.color": "#", - "theme.bar.menus.menu.clock.card.color": "#", - "theme.bar.menus.menu.battery.slider.puck": "#", - "theme.bar.menus.menu.battery.slider.backgroundhover": "#", - "theme.bar.menus.menu.battery.slider.background": "#", - "theme.bar.menus.menu.battery.slider.primary": "#", - "theme.bar.menus.menu.battery.icons.active": "#", - "theme.bar.menus.menu.battery.icons.passive": "#", - "theme.bar.menus.menu.battery.listitems.active": "#", - "theme.bar.menus.menu.battery.listitems.passive": "#", - "theme.bar.menus.menu.battery.text": "#", - "theme.bar.menus.menu.battery.label.color": "#", - "theme.bar.menus.menu.battery.border.color": "#", + "theme.bar.menus.menu.clock.card.color": "#", + "theme.bar.menus.menu.battery.card.color": "#", "theme.bar.menus.menu.battery.background.color": "#", - "theme.bar.menus.menu.battery.card.color": "#", - "theme.bar.menus.menu.systray.dropdownmenu.divider": "#", - "theme.bar.menus.menu.systray.dropdownmenu.text": "#", + "theme.bar.menus.menu.battery.slider.puck": "#", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#", + "theme.bar.menus.menu.battery.slider.background": "#", + "theme.bar.menus.menu.battery.slider.primary": "#", + "theme.bar.menus.menu.battery.icons.active": "#", + "theme.bar.menus.menu.battery.icons.passive": "#", + "theme.bar.menus.menu.battery.listitems.active": "#", + "theme.bar.menus.menu.battery.listitems.passive": "#", + "theme.bar.menus.menu.battery.text": "#", + "theme.bar.menus.menu.battery.label.color": "#", + "theme.bar.menus.menu.battery.border.color": "#", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#", "theme.bar.menus.menu.systray.dropdownmenu.background": "#", + "theme.bar.menus.menu.bluetooth.scroller.color": "#", "theme.bar.menus.menu.bluetooth.iconbutton.active": "#", - "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#", "theme.bar.menus.menu.bluetooth.icons.active": "#", - "theme.bar.menus.menu.bluetooth.icons.passive": "#", + "theme.bar.menus.menu.bluetooth.icons.passive": "#", "theme.bar.menus.menu.bluetooth.listitems.active": "#", - "theme.bar.menus.menu.bluetooth.listitems.passive": "#", - "theme.bar.menus.menu.bluetooth.switch.puck": "#", - "theme.bar.menus.menu.bluetooth.switch.disabled": "#", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#", + "theme.bar.menus.menu.bluetooth.switch.puck": "#", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#", "theme.bar.menus.menu.bluetooth.switch.enabled": "#", - "theme.bar.menus.menu.bluetooth.switch_divider": "#", - "theme.bar.menus.menu.bluetooth.status": "#", - "theme.bar.menus.menu.bluetooth.text": "#", + "theme.bar.menus.menu.bluetooth.switch_divider": "#", + "theme.bar.menus.menu.bluetooth.status": "#", + "theme.bar.menus.menu.bluetooth.text": "#", "theme.bar.menus.menu.bluetooth.label.color": "#", - "theme.bar.menus.menu.bluetooth.border.color": "#", + "theme.bar.menus.menu.bluetooth.border.color": "#", "theme.bar.menus.menu.bluetooth.background.color": "#", - "theme.bar.menus.menu.bluetooth.card.color": "#", - "theme.bar.menus.menu.network.iconbuttons.active": "#", - "theme.bar.menus.menu.network.iconbuttons.passive": "#", - "theme.bar.menus.menu.network.icons.active": "#", - "theme.bar.menus.menu.network.icons.passive": "#", - "theme.bar.menus.menu.network.listitems.active": "#", - "theme.bar.menus.menu.network.listitems.passive": "#", - "theme.bar.menus.menu.network.status.color": "#", - "theme.bar.menus.menu.network.text": "#", - "theme.bar.menus.menu.network.label.color": "#", - "theme.bar.menus.menu.network.border.color": "#", + "theme.bar.menus.menu.bluetooth.card.color": "#", + "theme.bar.menus.menu.network.iconbuttons.active": "#", + "theme.bar.menus.menu.network.iconbuttons.passive": "#", + "theme.bar.menus.menu.network.icons.active": "#", + "theme.bar.menus.menu.network.icons.passive": "#", + "theme.bar.menus.menu.network.listitems.active": "#", + "theme.bar.menus.menu.network.listitems.passive": "#", + "theme.bar.menus.menu.network.status.color": "#", + "theme.bar.menus.menu.network.text": "#", + "theme.bar.menus.menu.network.label.color": "#", + "theme.bar.menus.menu.network.border.color": "#", "theme.bar.menus.menu.network.background.color": "#", - "theme.bar.menus.menu.network.card.color": "#", - "theme.bar.menus.menu.volume.input_slider.puck": "#", - "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#", - "theme.bar.menus.menu.volume.input_slider.background": "#", - "theme.bar.menus.menu.volume.input_slider.primary": "#", - "theme.bar.menus.menu.volume.audio_slider.puck": "#", - "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#", - "theme.bar.menus.menu.volume.audio_slider.background": "#", - "theme.bar.menus.menu.volume.audio_slider.primary": "#", - "theme.bar.menus.menu.volume.icons.active": "#", - "theme.bar.menus.menu.volume.icons.passive": "#", - "theme.bar.menus.menu.volume.iconbutton.active": "#", + "theme.bar.menus.menu.network.card.color": "#", + "theme.bar.menus.menu.network.switch.enabled": "#", + "theme.bar.menus.menu.network.switch.disabled": "#", + "theme.bar.menus.menu.network.switch.puck": "#", + "theme.bar.menus.menu.network.scroller.color": "#", + "theme.bar.menus.menu.volume.input_slider.puck": "#", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#", + "theme.bar.menus.menu.volume.input_slider.background": "#", + "theme.bar.menus.menu.volume.input_slider.primary": "#", + "theme.bar.menus.menu.volume.audio_slider.puck": "#", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#", + "theme.bar.menus.menu.volume.audio_slider.background": "#", + "theme.bar.menus.menu.volume.audio_slider.primary": "#", + "theme.bar.menus.menu.volume.icons.active": "#", + "theme.bar.menus.menu.volume.icons.passive": "#", + "theme.bar.menus.menu.volume.iconbutton.active": "#", "theme.bar.menus.menu.volume.iconbutton.passive": "#", - "theme.bar.menus.menu.volume.listitems.active": "#", + "theme.bar.menus.menu.volume.listitems.active": "#", "theme.bar.menus.menu.volume.listitems.passive": "#", - "theme.bar.menus.menu.volume.border.color": "#", + "theme.bar.menus.menu.volume.border.color": "#", "theme.bar.menus.menu.volume.background.color": "#", - "theme.bar.menus.menu.media.slider.puck": "#", - "theme.bar.menus.menu.media.slider.backgroundhover": "#", - "theme.bar.menus.menu.media.slider.background": "#", - "theme.bar.menus.menu.media.slider.primary": "#", - "theme.bar.menus.menu.media.buttons.text": "#", - "theme.bar.menus.menu.media.buttons.background": "#", - "theme.bar.menus.menu.media.buttons.enabled": "#", - "theme.bar.menus.menu.media.buttons.inactive": "#", - "theme.bar.menus.menu.media.border.color": "#", - "theme.bar.menus.menu.media.background.color": "#", - "theme.bar.menus.menu.media.album": "#", - "theme.bar.menus.menu.media.artist": "#", + "theme.bar.menus.menu.volume.text": "#", + "theme.bar.menus.menu.volume.card.color": "#", + "theme.bar.menus.menu.volume.label.color": "#", "theme.bar.menus.menu.media.song": "#", + "theme.bar.menus.menu.media.artist": "#", + "theme.bar.menus.menu.media.album": "#", + "theme.bar.menus.menu.media.timestamp": "#", + "theme.bar.menus.menu.media.background.color": "#", + "theme.bar.menus.menu.media.border.color": "#", + "theme.bar.menus.menu.media.card.color": "#", + "theme.bar.menus.menu.media.buttons.text": "#", + "theme.bar.menus.menu.media.buttons.background": "#", + "theme.bar.menus.menu.media.buttons.enabled": "#", + "theme.bar.menus.menu.media.buttons.inactive": "#", + "theme.bar.menus.menu.media.slider.puck": "#", + "theme.bar.menus.menu.media.slider.backgroundhover": "#", + "theme.bar.menus.menu.media.slider.background": "#", + "theme.bar.menus.menu.media.slider.primary": "#", "theme.bar.menus.tooltip.text": "#", "theme.bar.menus.tooltip.background": "#", - "theme.bar.menus.dropdownmenu.divider": "#", + "theme.bar.menus.dropdownmenu.divider": "#", "theme.bar.menus.dropdownmenu.text": "#", "theme.bar.menus.dropdownmenu.background": "#", - "theme.bar.menus.slider.puck": "#", - "theme.bar.menus.slider.backgroundhover": "#", - "theme.bar.menus.slider.background": "#", - "theme.bar.menus.slider.primary": "#", - "theme.bar.menus.progressbar.background": "#", - "theme.bar.menus.progressbar.foreground": "#", - "theme.bar.menus.iconbuttons.active": "#", + "theme.bar.menus.slider.puck": "#", + "theme.bar.menus.slider.backgroundhover": "#", + "theme.bar.menus.slider.background": "#", + "theme.bar.menus.slider.primary": "#", + "theme.bar.menus.progressbar.background": "#", + "theme.bar.menus.progressbar.foreground": "#", + "theme.bar.menus.iconbuttons.active": "#", "theme.bar.menus.iconbuttons.passive": "#", "theme.bar.menus.buttons.text": "#", - "theme.bar.menus.buttons.disabled": "#", - "theme.bar.menus.buttons.active": "#", + "theme.bar.menus.buttons.disabled": "#", + "theme.bar.menus.buttons.active": "#", "theme.bar.menus.buttons.default": "#", - "theme.bar.menus.switch.puck": "#", - "theme.bar.menus.switch.disabled": "#", - "theme.bar.menus.switch.enabled": "#", - "theme.bar.menus.icons.active": "#", - "theme.bar.menus.icons.passive": "#", - "theme.bar.menus.listitems.active": "#", + "theme.bar.menus.switch.puck": "#", + "theme.bar.menus.switch.disabled": "#", + "theme.bar.menus.switch.enabled": "#", + "theme.bar.menus.icons.active": "#", + "theme.bar.menus.icons.passive": "#", + "theme.bar.menus.listitems.active": "#", "theme.bar.menus.listitems.passive": "#", - "theme.bar.menus.label": "#", - "theme.bar.menus.feinttext": "#", - "theme.bar.menus.dimtext": "#", + "theme.bar.menus.label": "#", + "theme.bar.menus.feinttext": "#", + "theme.bar.menus.dimtext": "#", "theme.bar.menus.cards": "#", - "theme.bar.buttons.notifications.total": "#", - "theme.bar.buttons.notifications.icon": "#", - "theme.bar.buttons.notifications.hover": "#", - "theme.bar.buttons.notifications.background": "#", - "theme.bar.buttons.clock.icon": "#", - "theme.bar.buttons.clock.text": "#", - "theme.bar.buttons.clock.hover": "#", - "theme.bar.buttons.clock.background": "#", - "theme.bar.buttons.battery.icon": "#", - "theme.bar.buttons.battery.text": "#", - "theme.bar.buttons.battery.hover": "#", - "theme.bar.buttons.battery.background": "#", - "theme.bar.buttons.systray.hover": "#", - "theme.bar.buttons.systray.background": "#", - "theme.bar.buttons.bluetooth.icon": "#", - "theme.bar.buttons.bluetooth.text": "#", - "theme.bar.buttons.bluetooth.hover": "#", - "theme.bar.buttons.bluetooth.background": "#", - "theme.bar.buttons.network.icon": "#", - "theme.bar.buttons.network.text": "#", - "theme.bar.buttons.network.hover": "#", - "theme.bar.buttons.network.background": "#", - "theme.bar.buttons.volume.icon": "#", - "theme.bar.buttons.volume.text": "#", - "theme.bar.buttons.volume.hover": "#", - "theme.bar.buttons.volume.background": "#", - "theme.bar.buttons.media.hover": "#", - "theme.bar.buttons.windowtitle.icon": "#", - "theme.bar.buttons.windowtitle.text": "#", - "theme.bar.buttons.windowtitle.hover": "#", - "theme.bar.buttons.windowtitle.background": "#", - "theme.bar.buttons.workspaces.numbered_active_text_color": "#", - "theme.bar.buttons.workspaces.active": "#", - "theme.bar.buttons.workspaces.occupied": "#", - "theme.bar.buttons.workspaces.available": "#", - "theme.bar.buttons.workspaces.hover": "#", - "theme.bar.buttons.workspaces.background": "#", - "theme.bar.buttons.dashboard.icon": "#", - "theme.bar.buttons.dashboard.hover": "#", - "theme.bar.buttons.dashboard.background": "#", - "theme.osd.label": "#", + "theme.osd.label": "#", "theme.osd.icon": "#", - "theme.osd.bar_overflow_color": "#", - "theme.osd.bar_empty_color": "#", - "theme.osd.bar_color": "#", - "theme.osd.icon_container": "#", + "theme.osd.icon_container": "#", + "theme.osd.bar_overflow_color": "#", + "theme.osd.bar_empty_color": "#", + "theme.osd.bar_color": "#", "theme.osd.bar_container": "#", - "theme.notification.close_button.label": "#", - "theme.notification.close_button.background": "#", - "theme.notification.labelicon": "#", + "theme.osd.border.color": "#", + "theme.notification.close_button.label": "#", + "theme.notification.close_button.background": "#", "theme.notification.text": "#", - "theme.notification.time": "#", - "theme.notification.border": "#", - "theme.notification.label": "#", - "theme.notification.actions.text": "#", - "theme.notification.actions.background": "#", + "theme.notification.time": "#", + "theme.notification.border": "#", + "theme.notification.label": "#", + "theme.notification.labelicon": "#", + "theme.notification.actions.text": "#", + "theme.notification.actions.background": "#", "theme.notification.background": "#", - "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#", - "theme.bar.buttons.workspaces.numbered_active_underline_color": "#", - "theme.bar.menus.menu.media.card.color": "#", - "theme.bar.menus.check_radio_button.background": "#", - "theme.bar.menus.check_radio_button.active": "#" -} + "theme.bar.buttons.icon_background": "#", + "theme.bar.buttons.icon": "#", + "theme.bar.buttons.separator.color": "#", + "theme.bar.buttons.borderColor": "#", + "theme.bar.buttons.background": "#", + "theme.bar.buttons.text": "#", + "theme.bar.buttons.hover": "#", + "theme.bar.buttons.dashboard.background": "#", + "theme.bar.buttons.dashboard.icon": "#", + "theme.bar.buttons.dashboard.border": "#", + "theme.bar.buttons.dashboard.icon_background": "#", + "theme.bar.buttons.windowtitle.icon_background": "#", + "theme.bar.buttons.windowtitle.background": "#", + "theme.bar.buttons.windowtitle.icon": "#", + "theme.bar.buttons.windowtitle.text": "#", + "theme.bar.buttons.windowtitle.border": "#", + "theme.bar.buttons.media.background": "#", + "theme.bar.buttons.media.icon_background": "#", + "theme.bar.buttons.media.icon": "#", + "theme.bar.buttons.media.text": "#", + "theme.bar.buttons.media.border": "#", + "theme.bar.buttons.volume.background": "#", + "theme.bar.buttons.volume.icon": "#", + "theme.bar.buttons.volume.text": "#", + "theme.bar.buttons.volume.icon_background": "#", + "theme.bar.buttons.volume.border": "#", + "theme.bar.buttons.network.background": "#", + "theme.bar.buttons.network.icon": "#", + "theme.bar.buttons.network.icon_background": "#", + "theme.bar.buttons.network.text": "#", + "theme.bar.buttons.network.border": "#", + "theme.bar.buttons.bluetooth.background": "#", + "theme.bar.buttons.bluetooth.icon": "#", + "theme.bar.buttons.bluetooth.text": "#", + "theme.bar.buttons.bluetooth.icon_background": "#", + "theme.bar.buttons.bluetooth.border": "#", + "theme.bar.buttons.bluetooth.hover": "#", + "theme.bar.buttons.systray.background": "#", + "theme.bar.buttons.systray.border": "#", + "theme.bar.buttons.systray.customIcon": "#", + "theme.bar.buttons.battery.background": "#", + "theme.bar.buttons.battery.icon": "#", + "theme.bar.buttons.battery.text": "#", + "theme.bar.buttons.battery.icon_background": "#", + "theme.bar.buttons.battery.border": "#", + "theme.bar.buttons.clock.background": "#", + "theme.bar.buttons.clock.icon": "#", + "theme.bar.buttons.clock.text": "#", + "theme.bar.buttons.clock.icon_background": "#", + "theme.bar.buttons.clock.border": "#", + "theme.bar.buttons.notifications.background": "#", + "theme.bar.buttons.notifications.total": "#", + "theme.bar.buttons.notifications.icon": "#", + "theme.bar.buttons.notifications.icon_background": "#", + "theme.bar.buttons.notifications.border": "#", + "theme.bar.buttons.workspaces.border": "#", + "theme.bar.buttons.workspaces.icon_background": "#", + "theme.bar.buttons.workspaces.background": "#", + "theme.bar.buttons.workspaces.active": "#", + "theme.bar.buttons.workspaces.occupied": "#", + "theme.bar.buttons.workspaces.available": "#", + "theme.bar.buttons.workspaces.hover": "#", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#", + "theme.bar.buttons.modules.microphone.border": "#", + "theme.bar.buttons.modules.microphone.background": "#", + "theme.bar.buttons.modules.microphone.text": "#", + "theme.bar.buttons.modules.microphone.icon": "#", + "theme.bar.buttons.modules.microphone.icon_background": "#", + "theme.bar.buttons.modules.ram.icon": "#", + "theme.bar.buttons.modules.ram.icon_background": "#", + "theme.bar.buttons.modules.ram.text": "#", + "theme.bar.buttons.modules.ram.background": "#", + "theme.bar.buttons.modules.ram.border": "#", + "theme.bar.buttons.modules.cpu.background": "#", + "theme.bar.buttons.modules.cpu.icon": "#", + "theme.bar.buttons.modules.cpu.icon_background": "#", + "theme.bar.buttons.modules.cpu.text": "#", + "theme.bar.buttons.modules.cpu.border": "#", + "theme.bar.buttons.modules.cpuTemp.background": "#", + "theme.bar.buttons.modules.cpuTemp.icon_background": "#", + "theme.bar.buttons.modules.cpuTemp.icon": "#", + "theme.bar.buttons.modules.cpuTemp.text": "#", + "theme.bar.buttons.modules.cpuTemp.border": "#", + "theme.bar.buttons.modules.storage.icon_background": "#", + "theme.bar.buttons.modules.storage.icon": "#", + "theme.bar.buttons.modules.storage.background": "#", + "theme.bar.buttons.modules.storage.text": "#", + "theme.bar.buttons.modules.storage.border": "#", + "theme.bar.buttons.modules.netstat.background": "#", + "theme.bar.buttons.modules.netstat.text": "#", + "theme.bar.buttons.modules.netstat.icon": "#", + "theme.bar.buttons.modules.netstat.icon_background": "#", + "theme.bar.buttons.modules.netstat.border": "#", + "theme.bar.buttons.modules.kbLayout.icon_background": "#", + "theme.bar.buttons.modules.kbLayout.icon": "#", + "theme.bar.buttons.modules.kbLayout.background": "#", + "theme.bar.buttons.modules.kbLayout.text": "#", + "theme.bar.buttons.modules.kbLayout.border": "#", + "theme.bar.buttons.modules.updates.background": "#", + "theme.bar.buttons.modules.updates.icon_background": "#", + "theme.bar.buttons.modules.updates.text": "#", + "theme.bar.buttons.modules.updates.icon": "#", + "theme.bar.buttons.modules.updates.border": "#", + "theme.bar.buttons.modules.weather.icon": "#", + "theme.bar.buttons.modules.weather.text": "#", + "theme.bar.buttons.modules.weather.icon_background": "#", + "theme.bar.buttons.modules.weather.background": "#", + "theme.bar.buttons.modules.weather.border": "#", + "theme.bar.buttons.modules.submap.background": "#", + "theme.bar.buttons.modules.submap.text": "#", + "theme.bar.buttons.modules.submap.border": "#", + "theme.bar.buttons.modules.submap.icon": "#", + "theme.bar.buttons.modules.submap.icon_background": "#", + "theme.bar.buttons.modules.hyprsunset.icon": "#", + "theme.bar.buttons.modules.hyprsunset.icon_background": "#", + "theme.bar.buttons.modules.hyprsunset.background": "#", + "theme.bar.buttons.modules.hyprsunset.text": "#", + "theme.bar.buttons.modules.hyprsunset.border": "#", + "theme.bar.buttons.modules.hypridle.icon": "#", + "theme.bar.buttons.modules.hypridle.icon_background": "#", + "theme.bar.buttons.modules.hypridle.background": "#", + "theme.bar.buttons.modules.hypridle.text": "#", + "theme.bar.buttons.modules.hypridle.border": "#", + "theme.bar.buttons.modules.power.icon": "#", + "theme.bar.buttons.modules.power.icon_background": "#", + "theme.bar.buttons.modules.power.background": "#", + "theme.bar.buttons.modules.power.border": "#", + "theme.bar.buttons.modules.cava.text": "#", + "theme.bar.buttons.modules.cava.background": "#", + "theme.bar.buttons.modules.cava.icon_background": "#", + "theme.bar.buttons.modules.cava.icon": "#", + "theme.bar.buttons.modules.cava.border": "#", + "theme.bar.buttons.modules.worldclock.text": "#", + "theme.bar.buttons.modules.worldclock.background": "#", + "theme.bar.buttons.modules.worldclock.icon_background": "#", + "theme.bar.buttons.modules.worldclock.icon": "#", + "theme.bar.buttons.modules.worldclock.border": "#" +} \ No newline at end of file diff --git a/hyprpanel_split.dcol b/hyprpanel_split.dcol new file mode 100644 index 0000000..06476e1 --- /dev/null +++ b/hyprpanel_split.dcol @@ -0,0 +1,400 @@ +${cacheDir}/landing/wallbash-hyprpanel.json | astal -i hyprpanel useTheme ${cacheDir}/landing/wallbash-hyprpanel.json +{ + "cursor": "#", + "number": "#", + "parens": "#", + "result": "#", + "comment": "#", + "matched": "#", + "function": "#", + "operator": "#", + "variable": "#", + "scrollbar": "#", + "separator": "#", + "background": "#", + "editorbackground": "#", + "theme.bar.background": "#", + "theme.bar.border.color": "#", + "theme.bar.menus.check_radio_button.background": "#", + "theme.bar.menus.check_radio_button.active": "#", + "theme.bar.menus.background": "#", + "theme.bar.menus.popover.text": "#", + "theme.bar.menus.popover.background": "#", + "theme.bar.menus.popover.border": "#", + "theme.bar.menus.text": "#", + "theme.bar.menus.border.color": "#", + "theme.bar.menus.menu.power.border.color": "#", + "theme.bar.menus.menu.power.buttons.restart.background": "#", + "theme.bar.menus.menu.power.buttons.restart.text": "#", + "theme.bar.menus.menu.power.buttons.restart.icon_background": "#", + "theme.bar.menus.menu.power.buttons.restart.icon": "#", + "theme.bar.menus.menu.power.buttons.shutdown.icon_background": "#", + "theme.bar.menus.menu.power.buttons.shutdown.text": "#", + "theme.bar.menus.menu.power.buttons.shutdown.icon": "#", + "theme.bar.menus.menu.power.buttons.shutdown.background": "#", + "theme.bar.menus.menu.power.buttons.logout.icon": "#", + "theme.bar.menus.menu.power.buttons.logout.background": "#", + "theme.bar.menus.menu.power.buttons.logout.text": "#", + "theme.bar.menus.menu.power.buttons.logout.icon_background": "#", + "theme.bar.menus.menu.power.buttons.sleep.icon_background": "#", + "theme.bar.menus.menu.power.buttons.sleep.text": "#", + "theme.bar.menus.menu.power.buttons.sleep.background": "#", + "theme.bar.menus.menu.power.buttons.sleep.icon": "#", + "theme.bar.menus.menu.power.background.color": "#", + "theme.bar.menus.menu.power.card.color": "#", + "theme.bar.menus.menu.notifications.pager.button": "#", + "theme.bar.menus.menu.notifications.scrollbar.color": "#", + "theme.bar.menus.menu.notifications.pager.label": "#", + "theme.bar.menus.menu.notifications.pager.background": "#", + "theme.bar.menus.menu.notifications.switch.puck": "#", + "theme.bar.menus.menu.notifications.switch.disabled": "#", + "theme.bar.menus.menu.notifications.switch.enabled": "#", + "theme.bar.menus.menu.notifications.clear": "#", + "theme.bar.menus.menu.notifications.switch_divider": "#", + "theme.bar.menus.menu.notifications.border": "#", + "theme.bar.menus.menu.notifications.card": "#", + "theme.bar.menus.menu.notifications.background": "#", + "theme.bar.menus.menu.notifications.no_notifications_label": "#", + "theme.bar.menus.menu.notifications.label": "#", + "theme.bar.menus.menu.dashboard.powermenu.shutdown": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.deny": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.confirm": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.button_text": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.body": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.label": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.border": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.background": "#", + "theme.bar.menus.menu.dashboard.powermenu.confirmation.card": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.label": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.disk.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.label": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.gpu.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.label": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.ram.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.label": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.bar": "#", + "theme.bar.menus.menu.dashboard.monitors.cpu.icon": "#", + "theme.bar.menus.menu.dashboard.monitors.bar_background": "#", + "theme.bar.menus.menu.dashboard.directories.right.bottom.color": "#", + "theme.bar.menus.menu.dashboard.directories.right.middle.color": "#", + "theme.bar.menus.menu.dashboard.directories.right.top.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.bottom.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.middle.color": "#", + "theme.bar.menus.menu.dashboard.directories.left.top.color": "#", + "theme.bar.menus.menu.dashboard.controls.input.text": "#", + "theme.bar.menus.menu.dashboard.controls.input.background": "#", + "theme.bar.menus.menu.dashboard.controls.volume.text": "#", + "theme.bar.menus.menu.dashboard.controls.volume.background": "#", + "theme.bar.menus.menu.dashboard.controls.notifications.text": "#", + "theme.bar.menus.menu.dashboard.controls.notifications.background": "#", + "theme.bar.menus.menu.dashboard.controls.bluetooth.text": "#", + "theme.bar.menus.menu.dashboard.controls.bluetooth.background": "#", + "theme.bar.menus.menu.dashboard.controls.wifi.text": "#", + "theme.bar.menus.menu.dashboard.controls.wifi.background": "#", + "theme.bar.menus.menu.dashboard.controls.disabled": "#", + "theme.bar.menus.menu.dashboard.shortcuts.recording": "#", + "theme.bar.menus.menu.dashboard.shortcuts.text": "#", + "theme.bar.menus.menu.dashboard.shortcuts.background": "#", + "theme.bar.menus.menu.dashboard.powermenu.sleep": "#", + "theme.bar.menus.menu.dashboard.powermenu.logout": "#", + "theme.bar.menus.menu.dashboard.powermenu.restart": "#", + "theme.bar.menus.menu.dashboard.profile.name": "#", + "theme.bar.menus.menu.dashboard.border.color": "#", + "theme.bar.menus.menu.dashboard.background.color": "#", + "theme.bar.menus.menu.dashboard.card.color": "#", + "theme.bar.menus.menu.clock.weather.hourly.temperature": "#", + "theme.bar.menus.menu.clock.weather.hourly.icon": "#", + "theme.bar.menus.menu.clock.weather.hourly.time": "#", + "theme.bar.menus.menu.clock.weather.thermometer.extremelycold": "#", + "theme.bar.menus.menu.clock.weather.thermometer.cold": "#", + "theme.bar.menus.menu.clock.weather.thermometer.moderate": "#", + "theme.bar.menus.menu.clock.weather.thermometer.hot": "#", + "theme.bar.menus.menu.clock.weather.thermometer.extremelyhot": "#", + "theme.bar.menus.menu.clock.weather.stats": "#", + "theme.bar.menus.menu.clock.weather.status": "#", + "theme.bar.menus.menu.clock.weather.temperature": "#", + "theme.bar.menus.menu.clock.weather.icon": "#", + "theme.bar.menus.menu.clock.calendar.contextdays": "#", + "theme.bar.menus.menu.clock.calendar.days": "#", + "theme.bar.menus.menu.clock.calendar.currentday": "#", + "theme.bar.menus.menu.clock.calendar.paginator": "#", + "theme.bar.menus.menu.clock.calendar.weekdays": "#", + "theme.bar.menus.menu.clock.calendar.yearmonth": "#", + "theme.bar.menus.menu.clock.time.timeperiod": "#", + "theme.bar.menus.menu.clock.time.time": "#", + "theme.bar.menus.menu.clock.text": "#", + "theme.bar.menus.menu.clock.border.color": "#", + "theme.bar.menus.menu.clock.background.color": "#", + "theme.bar.menus.menu.clock.card.color": "#", + "theme.bar.menus.menu.battery.card.color": "#", + "theme.bar.menus.menu.battery.background.color": "#", + "theme.bar.menus.menu.battery.slider.puck": "#", + "theme.bar.menus.menu.battery.slider.backgroundhover": "#", + "theme.bar.menus.menu.battery.slider.background": "#", + "theme.bar.menus.menu.battery.slider.primary": "#", + "theme.bar.menus.menu.battery.icons.active": "#", + "theme.bar.menus.menu.battery.icons.passive": "#", + "theme.bar.menus.menu.battery.listitems.active": "#", + "theme.bar.menus.menu.battery.listitems.passive": "#", + "theme.bar.menus.menu.battery.text": "#", + "theme.bar.menus.menu.battery.label.color": "#", + "theme.bar.menus.menu.battery.border.color": "#", + "theme.bar.menus.menu.systray.dropdownmenu.divider": "#", + "theme.bar.menus.menu.systray.dropdownmenu.text": "#", + "theme.bar.menus.menu.systray.dropdownmenu.background": "#", + "theme.bar.menus.menu.bluetooth.scroller.color": "#", + "theme.bar.menus.menu.bluetooth.iconbutton.active": "#", + "theme.bar.menus.menu.bluetooth.iconbutton.passive": "#", + "theme.bar.menus.menu.bluetooth.icons.active": "#", + "theme.bar.menus.menu.bluetooth.icons.passive": "#", + "theme.bar.menus.menu.bluetooth.listitems.active": "#", + "theme.bar.menus.menu.bluetooth.listitems.passive": "#", + "theme.bar.menus.menu.bluetooth.switch.puck": "#", + "theme.bar.menus.menu.bluetooth.switch.disabled": "#", + "theme.bar.menus.menu.bluetooth.switch.enabled": "#", + "theme.bar.menus.menu.bluetooth.switch_divider": "#", + "theme.bar.menus.menu.bluetooth.status": "#", + "theme.bar.menus.menu.bluetooth.text": "#", + "theme.bar.menus.menu.bluetooth.label.color": "#", + "theme.bar.menus.menu.bluetooth.border.color": "#", + "theme.bar.menus.menu.bluetooth.background.color": "#", + "theme.bar.menus.menu.bluetooth.card.color": "#", + "theme.bar.menus.menu.network.iconbuttons.active": "#", + "theme.bar.menus.menu.network.iconbuttons.passive": "#", + "theme.bar.menus.menu.network.icons.active": "#", + "theme.bar.menus.menu.network.icons.passive": "#", + "theme.bar.menus.menu.network.listitems.active": "#", + "theme.bar.menus.menu.network.listitems.passive": "#", + "theme.bar.menus.menu.network.status.color": "#", + "theme.bar.menus.menu.network.text": "#", + "theme.bar.menus.menu.network.label.color": "#", + "theme.bar.menus.menu.network.border.color": "#", + "theme.bar.menus.menu.network.background.color": "#", + "theme.bar.menus.menu.network.card.color": "#", + "theme.bar.menus.menu.network.switch.enabled": "#", + "theme.bar.menus.menu.network.switch.disabled": "#", + "theme.bar.menus.menu.network.switch.puck": "#", + "theme.bar.menus.menu.network.scroller.color": "#", + "theme.bar.menus.menu.volume.input_slider.puck": "#", + "theme.bar.menus.menu.volume.input_slider.backgroundhover": "#", + "theme.bar.menus.menu.volume.input_slider.background": "#", + "theme.bar.menus.menu.volume.input_slider.primary": "#", + "theme.bar.menus.menu.volume.audio_slider.puck": "#", + "theme.bar.menus.menu.volume.audio_slider.backgroundhover": "#", + "theme.bar.menus.menu.volume.audio_slider.background": "#", + "theme.bar.menus.menu.volume.audio_slider.primary": "#", + "theme.bar.menus.menu.volume.icons.active": "#", + "theme.bar.menus.menu.volume.icons.passive": "#", + "theme.bar.menus.menu.volume.iconbutton.active": "#", + "theme.bar.menus.menu.volume.iconbutton.passive": "#", + "theme.bar.menus.menu.volume.listitems.active": "#", + "theme.bar.menus.menu.volume.listitems.passive": "#", + "theme.bar.menus.menu.volume.border.color": "#", + "theme.bar.menus.menu.volume.background.color": "#", + "theme.bar.menus.menu.volume.text": "#", + "theme.bar.menus.menu.volume.card.color": "#", + "theme.bar.menus.menu.volume.label.color": "#", + "theme.bar.menus.menu.media.song": "#", + "theme.bar.menus.menu.media.artist": "#", + "theme.bar.menus.menu.media.album": "#", + "theme.bar.menus.menu.media.timestamp": "#", + "theme.bar.menus.menu.media.background.color": "#", + "theme.bar.menus.menu.media.border.color": "#", + "theme.bar.menus.menu.media.card.color": "#", + "theme.bar.menus.menu.media.buttons.text": "#", + "theme.bar.menus.menu.media.buttons.background": "#", + "theme.bar.menus.menu.media.buttons.enabled": "#", + "theme.bar.menus.menu.media.buttons.inactive": "#", + "theme.bar.menus.menu.media.slider.puck": "#", + "theme.bar.menus.menu.media.slider.backgroundhover": "#", + "theme.bar.menus.menu.media.slider.background": "#", + "theme.bar.menus.menu.media.slider.primary": "#", + "theme.bar.menus.tooltip.text": "#", + "theme.bar.menus.tooltip.background": "#", + "theme.bar.menus.dropdownmenu.divider": "#", + "theme.bar.menus.dropdownmenu.text": "#", + "theme.bar.menus.dropdownmenu.background": "#", + "theme.bar.menus.slider.puck": "#", + "theme.bar.menus.slider.backgroundhover": "#", + "theme.bar.menus.slider.background": "#", + "theme.bar.menus.slider.primary": "#", + "theme.bar.menus.progressbar.background": "#", + "theme.bar.menus.progressbar.foreground": "#", + "theme.bar.menus.iconbuttons.active": "#", + "theme.bar.menus.iconbuttons.passive": "#", + "theme.bar.menus.buttons.text": "#", + "theme.bar.menus.buttons.disabled": "#", + "theme.bar.menus.buttons.active": "#", + "theme.bar.menus.buttons.default": "#", + "theme.bar.menus.switch.puck": "#", + "theme.bar.menus.switch.disabled": "#", + "theme.bar.menus.switch.enabled": "#", + "theme.bar.menus.icons.active": "#", + "theme.bar.menus.icons.passive": "#", + "theme.bar.menus.listitems.active": "#", + "theme.bar.menus.listitems.passive": "#", + "theme.bar.menus.label": "#", + "theme.bar.menus.feinttext": "#", + "theme.bar.menus.dimtext": "#", + "theme.bar.menus.cards": "#", + "theme.osd.label": "#", + "theme.osd.icon": "#", + "theme.osd.icon_container": "#", + "theme.osd.bar_overflow_color": "#", + "theme.osd.bar_empty_color": "#", + "theme.osd.bar_color": "#", + "theme.osd.bar_container": "#", + "theme.osd.border.color": "#", + "theme.notification.close_button.label": "#", + "theme.notification.close_button.background": "#", + "theme.notification.text": "#", + "theme.notification.time": "#", + "theme.notification.border": "#", + "theme.notification.label": "#", + "theme.notification.labelicon": "#", + "theme.notification.actions.text": "#", + "theme.notification.actions.background": "#", + "theme.notification.background": "#", + "theme.bar.buttons.icon_background": "#", + "theme.bar.buttons.icon": "#", + "theme.bar.buttons.separator.color": "#", + "theme.bar.buttons.borderColor": "#", + "theme.bar.buttons.background": "#", + "theme.bar.buttons.text": "#", + "theme.bar.buttons.hover": "#", + "theme.bar.buttons.dashboard.icon_background": "#", + "theme.bar.buttons.dashboard.background": "#", + "theme.bar.buttons.dashboard.icon": "#", + "theme.bar.buttons.dashboard.border": "#", + "theme.bar.buttons.windowtitle.icon_background": "#", + "theme.bar.buttons.windowtitle.background": "#", + "theme.bar.buttons.windowtitle.icon": "#", + "theme.bar.buttons.windowtitle.text": "#", + "theme.bar.buttons.windowtitle.border": "#", + "theme.bar.buttons.media.background": "#", + "theme.bar.buttons.media.icon_background": "#", + "theme.bar.buttons.media.icon": "#", + "theme.bar.buttons.media.text": "#", + "theme.bar.buttons.media.border": "#", + "theme.bar.buttons.volume.background": "#", + "theme.bar.buttons.volume.icon": "#", + "theme.bar.buttons.volume.text": "#", + "theme.bar.buttons.volume.icon_background": "#", + "theme.bar.buttons.volume.border": "#", + "theme.bar.buttons.network.background": "#", + "theme.bar.buttons.network.icon": "#", + "theme.bar.buttons.network.icon_background": "#", + "theme.bar.buttons.network.text": "#", + "theme.bar.buttons.network.border": "#", + "theme.bar.buttons.bluetooth.background": "#", + "theme.bar.buttons.bluetooth.icon": "#", + "theme.bar.buttons.bluetooth.text": "#", + "theme.bar.buttons.bluetooth.icon_background": "#", + "theme.bar.buttons.bluetooth.border": "#", + "theme.bar.buttons.bluetooth.hover": "#", + "theme.bar.buttons.systray.background": "#", + "theme.bar.buttons.systray.border": "#", + "theme.bar.buttons.systray.customIcon": "#", + "theme.bar.buttons.battery.background": "#", + "theme.bar.buttons.battery.icon": "#", + "theme.bar.buttons.battery.text": "#", + "theme.bar.buttons.battery.icon_background": "#", + "theme.bar.buttons.battery.border": "#", + "theme.bar.buttons.clock.background": "#", + "theme.bar.buttons.clock.icon": "#", + "theme.bar.buttons.clock.text": "#", + "theme.bar.buttons.clock.icon_background": "#", + "theme.bar.buttons.clock.border": "#", + "theme.bar.buttons.notifications.background": "#", + "theme.bar.buttons.notifications.total": "#", + "theme.bar.buttons.notifications.icon": "#", + "theme.bar.buttons.notifications.icon_background": "#", + "theme.bar.buttons.notifications.border": "#", + "theme.bar.buttons.workspaces.border": "#", + "theme.bar.buttons.workspaces.icon_background": "#", + "theme.bar.buttons.workspaces.background": "#", + "theme.bar.buttons.workspaces.active": "#", + "theme.bar.buttons.workspaces.occupied": "#", + "theme.bar.buttons.workspaces.available": "#", + "theme.bar.buttons.workspaces.hover": "#", + "theme.bar.buttons.workspaces.numbered_active_highlighted_text_color": "#", + "theme.bar.buttons.workspaces.numbered_active_underline_color": "#", + "theme.bar.buttons.workspaces.numbered_active_text_color": "#", + "theme.bar.buttons.modules.microphone.border": "#", + "theme.bar.buttons.modules.microphone.background": "#", + "theme.bar.buttons.modules.microphone.text": "#", + "theme.bar.buttons.modules.microphone.icon": "#", + "theme.bar.buttons.modules.microphone.icon_background": "#", + "theme.bar.buttons.modules.ram.icon": "#", + "theme.bar.buttons.modules.ram.icon_background": "#", + "theme.bar.buttons.modules.ram.text": "#", + "theme.bar.buttons.modules.ram.background": "#", + "theme.bar.buttons.modules.ram.border": "#", + "theme.bar.buttons.modules.cpu.background": "#", + "theme.bar.buttons.modules.cpu.icon": "#", + "theme.bar.buttons.modules.cpu.icon_background": "#", + "theme.bar.buttons.modules.cpu.text": "#", + "theme.bar.buttons.modules.cpu.border": "#", + "theme.bar.buttons.modules.cpuTemp.background": "#", + "theme.bar.buttons.modules.cpuTemp.icon_background": "#", + "theme.bar.buttons.modules.cpuTemp.icon": "#", + "theme.bar.buttons.modules.cpuTemp.text": "#", + "theme.bar.buttons.modules.cpuTemp.border": "#", + "theme.bar.buttons.modules.storage.icon_background": "#", + "theme.bar.buttons.modules.storage.icon": "#", + "theme.bar.buttons.modules.storage.background": "#", + "theme.bar.buttons.modules.storage.text": "#", + "theme.bar.buttons.modules.storage.border": "#", + "theme.bar.buttons.modules.netstat.background": "#", + "theme.bar.buttons.modules.netstat.text": "#", + "theme.bar.buttons.modules.netstat.icon": "#", + "theme.bar.buttons.modules.netstat.icon_background": "#", + "theme.bar.buttons.modules.netstat.border": "#", + "theme.bar.buttons.modules.kbLayout.icon_background": "#", + "theme.bar.buttons.modules.kbLayout.icon": "#", + "theme.bar.buttons.modules.kbLayout.background": "#", + "theme.bar.buttons.modules.kbLayout.text": "#", + "theme.bar.buttons.modules.kbLayout.border": "#", + "theme.bar.buttons.modules.updates.background": "#", + "theme.bar.buttons.modules.updates.icon_background": "#", + "theme.bar.buttons.modules.updates.text": "#", + "theme.bar.buttons.modules.updates.icon": "#", + "theme.bar.buttons.modules.updates.border": "#", + "theme.bar.buttons.modules.weather.icon": "#", + "theme.bar.buttons.modules.weather.text": "#", + "theme.bar.buttons.modules.weather.icon_background": "#", + "theme.bar.buttons.modules.weather.background": "#", + "theme.bar.buttons.modules.weather.border": "#", + "theme.bar.buttons.modules.submap.background": "#", + "theme.bar.buttons.modules.submap.text": "#", + "theme.bar.buttons.modules.submap.border": "#", + "theme.bar.buttons.modules.submap.icon": "#", + "theme.bar.buttons.modules.submap.icon_background": "#", + "theme.bar.buttons.modules.hyprsunset.icon": "#", + "theme.bar.buttons.modules.hyprsunset.icon_background": "#", + "theme.bar.buttons.modules.hyprsunset.background": "#", + "theme.bar.buttons.modules.hyprsunset.text": "#", + "theme.bar.buttons.modules.hyprsunset.border": "#", + "theme.bar.buttons.modules.hypridle.icon": "#", + "theme.bar.buttons.modules.hypridle.icon_background": "#", + "theme.bar.buttons.modules.hypridle.background": "#", + "theme.bar.buttons.modules.hypridle.text": "#", + "theme.bar.buttons.modules.hypridle.border": "#", + "theme.bar.buttons.modules.power.icon": "#", + "theme.bar.buttons.modules.power.icon_background": "#", + "theme.bar.buttons.modules.power.background": "#", + "theme.bar.buttons.modules.power.border": "#", + "theme.bar.buttons.modules.cava.text": "#", + "theme.bar.buttons.modules.cava.background": "#", + "theme.bar.buttons.modules.cava.icon_background": "#", + "theme.bar.buttons.modules.cava.icon": "#", + "theme.bar.buttons.modules.cava.border": "#", + "theme.bar.buttons.modules.worldclock.text": "#", + "theme.bar.buttons.modules.worldclock.background": "#", + "theme.bar.buttons.modules.worldclock.icon_background": "#", + "theme.bar.buttons.modules.worldclock.icon": "#", + "theme.bar.buttons.modules.worldclock.border": "#" +} \ No newline at end of file