dotfiles/private_dot_config/waybar/config.jsonc
Yarne Coppens 75a1015a7d Update .config/sway/config
Update .config/waybar/config.jsonc
Update .config/waybar/style.css
2026-02-06 00:05:50 +01:00

41 lines
No EOL
1.1 KiB
Text

// -*- 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","memory","disk"],
"orientation":"horizontal"
},
"group/datetime":{
"modules":["clock","clock#date"]
},
"include": [
"~/.config/waybar/modules.jsonc"
]
}
]