dotfiles/private_dot_config/waybar/config.jsonc

41 lines
1.1 KiB
Text
Raw Normal View History

2026-02-05 09:15:15 +01:00
// -*- mode: jsonc -*-
[
{
"layer": "top", // Waybar at top layer
// "position": "bottom", // Waybar position (top|bottom|left|right)
//"height": 30, // Waybar height (to be removed for auto height)
// "width": 1280, // Waybar width
"spacing": 4, // Gaps between modules (4px)
"reload_style_on_change":true,
// Choose the order of the modules
"modules-left": [
"group/datetime",
"pulseaudio",
"bluetooth",
"group/hardware",
"privacy"
],
"modules-center": [
"group/music"
],
"modules-right": [
"sway/scratchpad",
"sway/workspaces",
"tray",
"custom/power"
],
"group/music":{
"modules":["mpris", "cava"]
},
"group/hardware":{
"modules":["cpu","custom/gpu-usage","memory","disk"],
"orientation":"horizontal"
},
"group/datetime":{
"modules":["clock","clock#date"]
},
"include": [
"~/.config/waybar/modules.jsonc"
]
}
]