Created
September 8, 2025 19:10
-
-
Save goodroot/9cf1394ff8fe0fe1ab8b30aff2c90968 to your computer and use it in GitHub Desktop.
omarchy waybar + hyprwhspr
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "reload_style_on_change": true, | |
| "layer": "top", | |
| "position": "top", | |
| "spacing": 0, | |
| "height": 26, | |
| "modules-left": ["custom/omarchy", "hyprland/workspaces"], | |
| "modules-center": ["clock", "custom/update"], | |
| "modules-right": [ | |
| "custom/hyprwhspr", | |
| "group/tray-expander", | |
| "bluetooth", | |
| "network", | |
| "pulseaudio", | |
| "cpu", | |
| "battery" | |
| ], | |
| "include": ["hyprwhspr-module.jsonc"], | |
| "hyprland/workspaces": { | |
| "on-click": "activate", | |
| "format": "{icon}", | |
| "format-icons": { | |
| "default": "", | |
| "1": "1", | |
| "2": "2", | |
| "3": "3", | |
| "4": "4", | |
| "5": "5", | |
| "6": "6", | |
| "7": "7", | |
| "8": "8", | |
| "9": "9", | |
| "active": "" | |
| }, | |
| "persistent-workspaces": { | |
| "1": [], | |
| "2": [], | |
| "3": [], | |
| "4": [], | |
| "5": [] | |
| } | |
| }, | |
| "custom/omarchy": { | |
| "format": "", | |
| "on-click": "omarchy-menu", | |
| "tooltip-format": "Omarchy Menu\n\nSuper + Alt + Space" | |
| }, | |
| "custom/update": { | |
| "format": "", | |
| "exec": "omarchy-update-available", | |
| "on-click": "alacritty --class Omarchy --title Omarchy -e omarchy-update", | |
| "tooltip-format": "Omarchy update available", | |
| "interval": 3600 | |
| }, | |
| "cpu": { | |
| "interval": 5, | |
| "format": "", | |
| "on-click": "alacritty -e btop" | |
| }, | |
| "clock": { | |
| "format": "{:%A %I:%M %p}", | |
| "format-alt": "{:%d %B W%V %Y}", | |
| "tooltip": false, | |
| "on-click-right": "omarchy-cmd-tzupdate" | |
| }, | |
| "network": { | |
| "format-icons": ["", "", "", "", ""], | |
| "format": "{icon}", | |
| "format-wifi": "{icon}", | |
| "format-ethernet": "", | |
| "format-disconnected": "", | |
| "tooltip-format-wifi": "{essid} ({frequency} GHz)\n⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}", | |
| "tooltip-format-ethernet": "⇣{bandwidthDownBytes} ⇡{bandwidthUpBytes}", | |
| "tooltip-format-disconnected": "Disconnected", | |
| "interval": 3, | |
| "spacing": 1, | |
| "on-click": "alacritty --class=Impala -e impala" | |
| }, | |
| "battery": { | |
| "format": "{capacity}% {icon}", | |
| "format-discharging": "{icon}", | |
| "format-charging": "{icon}", | |
| "format-plugged": "", | |
| "format-icons": { | |
| "charging": ["", "", "", "", "", "", "", "", "", ""], | |
| "default": ["", "", "", "", "", "", "", "", "", ""] | |
| }, | |
| "format-full": "", | |
| "tooltip-format-discharging": "{power:>1.0f}W↓ {capacity}%", | |
| "tooltip-format-charging": "{power:>1.0f}W↑ {capacity}%", | |
| "interval": 5, | |
| "states": { | |
| "warning": 20, | |
| "critical": 10 | |
| } | |
| }, | |
| "bluetooth": { | |
| "format": "", | |
| "format-disabled": "", | |
| "format-connected": "", | |
| "tooltip-format": "Devices connected: {num_connections}", | |
| "on-click": "blueberry" | |
| }, | |
| "pulseaudio": { | |
| "format": "{icon}", | |
| "on-click": "alacritty --class=Wiremix -e wiremix", | |
| "on-click-right": "pamixer -t", | |
| "tooltip-format": "Playing at {volume}%", | |
| "scroll-step": 5, | |
| "format-muted": "", | |
| "format-icons": { | |
| "default": ["", "", ""] | |
| } | |
| }, | |
| "group/tray-expander": { | |
| "orientation": "inherit", | |
| "drawer": { | |
| "transition-duration": 600, | |
| "children-class": "tray-group-item" | |
| }, | |
| "modules": ["custom/expand-icon", "tray"] | |
| }, | |
| "custom/expand-icon": { | |
| "format": " ", | |
| "tooltip": false | |
| }, | |
| "tray": { | |
| "icon-size": 12, | |
| "spacing": 12 | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @import "../omarchy/current/theme/waybar.css"; | |
| @import "/opt/hyprwhspr/config/waybar/hyprwhspr-style.css"; | |
| * { | |
| background-color: @background; | |
| color: @foreground; | |
| border: none; | |
| border-radius: 0; | |
| min-height: 0; | |
| font-family: CaskaydiaMono Nerd Font; | |
| font-size: 12px; | |
| } | |
| .modules-left { | |
| margin-left: 8px; | |
| } | |
| .modules-right { | |
| margin-right: 8px; | |
| } | |
| #workspaces button { | |
| all: initial; | |
| padding: 0 6px; | |
| margin: 0 1.5px; | |
| min-width: 9px; | |
| } | |
| #workspaces button.empty { | |
| opacity: 0.5; | |
| } | |
| #tray, | |
| #cpu, | |
| #battery, | |
| #network, | |
| #bluetooth, | |
| #pulseaudio, | |
| #custom-omarchy, | |
| #custom-update { | |
| min-width: 12px; | |
| margin: 0 7.5px; | |
| } | |
| #custom-expand-icon { | |
| margin-right: 7px; | |
| } | |
| tooltip { | |
| padding: 2px; | |
| } | |
| #custom-update { | |
| font-size: 10px; | |
| } | |
| #clock { | |
| margin-left: 8.75px; | |
| } | |
| .hidden { | |
| opacity: 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment