zero/home-environments/radio/files/.config/waybar/config

122 lines
3.1 KiB
Plaintext
Raw Normal View History

{
// "layer": "bottom", // Waybar at top layer
// "position": "bottom", // Waybar position (top|bottom|left|right)
"spacing": 0, // Gaps between modules (4px)
// Choose the order of the modules
"modules-left": ["river/tags", "river/window"],
"modules-right": ["custom/arrow1", "custom/net-up-icon", "network#up",
"custom/net-down-icon", "network#down",
"custom/arrow2", "custom/mem-icon", "memory",
"custom/arrow1", "custom/cpu-icon", "cpu",
"custom/arrow2", "custom/temp-icon", "temperature",
"custom/arrow1", "custom/wireplumber-icon", "wireplumber",
"custom/arrow2", "custom/bat-icon", "battery",
"custom/arrow1", "clock",
"custom/arrow2", "tray"],
// Modules configuration
"river/tags": {
2024-03-23 06:26:43 +00:00
"tag-labels": ["α", "β", "γ", "δ", "ε", "ζ", "η", "•"]
},
"river/window": {
"format": "{}",
"max-length": 75,
"tooltip": false
},
"tray": {
"spacing": 10,
"tooltip": false
},
"clock": {
"format": "{:%a %d %b %H:%M}",
"interval": 5,
"tooltip-format": "<tt><big>{calendar}</big></tt>",
},
"cpu": {
"format": "{usage}%",
"tooltip": false
},
"custom/cpu-icon": {
"format": " ",
"tooltip": false
},
"memory": {
"format": "{used}Gb",
"tooltip": false
},
"custom/mem-icon": {
"format": " ",
"tooltip": false
},
"temperature": {
"format": "{temperatureC}°C",
"tooltip": false
},
"custom/temp-icon": {
"format": " ",
"tooltip": false
},
"battery": {
"states": {
"full": 100,
"good": 95,
"critical": 20
},
"tooltip": false,
"format": "{capacity}%",
},
"custom/bat-icon": {
"format": " ",
"tooltip": false
},
"network#down": {
"format-wifi": "{bandwidthDownBytes}",
"tooltip": false,
},
"custom/net-down-icon": {
"format": " ",
"tooltip": false
},
"network#up": {
"format-wifi": "{bandwidthUpBytes}",
"tooltip": false,
},
"custom/net-up-icon": {
"format": " ",
"tooltip": false
},
"wireplumber": {
"format": "{volume}%",
"tooltip": false
},
"custom/wireplumber-icon": {
"format": " ",
"tooltip": false
},
"keyboard-state": {
"capslock": true,
"format": "{name} {icon}",
"format-icons": {
"locked": "",
"unlocked": ""
}
},
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
"custom/arrow1": {
"format": "",
"tooltip": false
},
"custom/arrow2": {
"format": "",
"tooltip": false
},
}