waybar config updates from omarchy update

This commit is contained in:
2026-01-23 06:38:46 -05:00
parent 38e92a7c9c
commit 488e286fb3
2 changed files with 28 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
"spacing": 0, "spacing": 0,
"height": 26, "height": 26,
"modules-left": ["custom/omarchy", "hyprland/workspaces"], "modules-left": ["custom/omarchy", "hyprland/workspaces"],
"modules-center": ["clock", "custom/update", "custom/screenrecording-indicator"], "modules-center": ["clock", "custom/update", "custom/voxtype", "custom/screenrecording-indicator"],
"modules-right": [ "modules-right": [
"group/tray-expander", "group/tray-expander",
"bluetooth", "bluetooth",
@@ -91,12 +91,13 @@
}, },
"pulseaudio": { "pulseaudio": {
"format": "{icon}", "format": "{icon}",
"on-click": "omarchy-launch-or-focus-tui wiremix", "on-click": "omarchy-launch-audio",
"on-click-right": "pamixer -t", "on-click-right": "pamixer -t",
"tooltip-format": "Playing at {volume}%", "tooltip-format": "Playing at {volume}%",
"scroll-step": 5, "scroll-step": 5,
"format-muted": "", "format-muted": "",
"format-icons": { "format-icons": {
"headphone": "",
"default": ["", "", ""] "default": ["", "", ""]
} }
}, },
@@ -118,6 +119,19 @@
"signal": 8, "signal": 8,
"return-type": "json" "return-type": "json"
}, },
"custom/voxtype": {
"exec": "omarchy-voxtype-status",
"return-type": "json",
"format": "{icon}",
"format-icons": {
"idle": "",
"recording": "󰍬",
"transcribing": "󰔟"
},
"tooltip": true,
"on-click-right": "omarchy-voxtype-config",
"on-click": "omarchy-voxtype-model"
},
"tray": { "tray": {
"icon-size": 12, "icon-size": 12,
"spacing": 17 "spacing": 17

View File

@@ -69,7 +69,7 @@ tooltip {
} }
#clock { #clock {
margin-left: 8.75px; margin-left: 5px;
} }
.hidden { .hidden {
@@ -78,10 +78,20 @@ tooltip {
#custom-screenrecording-indicator { #custom-screenrecording-indicator {
min-width: 12px; min-width: 12px;
margin-left: 8.75px; margin-left: 5px;
font-size: 10px; font-size: 10px;
padding-bottom: 1px;
} }
#custom-screenrecording-indicator.active { #custom-screenrecording-indicator.active {
color: #a55555; color: #a55555;
} }
#custom-voxtype {
min-width: 12px;
margin: 0 0 0 7.5px;
}
#custom-voxtype.recording {
color: #a55555;
}