1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00
dotfiles/waybar/config

39 lines
798 B
Text

// -*- mode: jsonc -*-
{
"output": "DP-1",
"position": "bottom",
"height": 34,
"spacing": 0,
// Choose the order of the modules
"modules-left": [
"hyprland/workspaces",
],
"modules-center": [
],
"modules-right": [
"tray",
"cpu",
"memory",
"clock"
],
// Modules configuration
"hyprland/workspaces": {
"format": "{name}",
},
"tray": {
"icon-size": 24,
"spacing": 10
},
"clock": {
"interval": 1,
"format": "{:%H:%M:%S %Y-%m-%d}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"cpu": {
"format": "{usage}% ",
"tooltip": false
},
"memory": {
"format": "{}% "
}
}