// -*- mode: jsonc -*- // SPDX-FileCopyrightText: 2025 Hilton Chain // // SPDX-License-Identifier: CC0-1.0 { "layer": "top", "height": 36, "spacing": 5, "modules-left": [ "temperature", "cpu", "memory", "wlr/taskbar", ], "modules-center": [ "clock", ], "modules-right": [ "tray", "wireplumber", "backlight", "battery", ], // left "temperature": { "critical-threshold": 80, "format": "{temperatureC}\u00B0C", "interval": 2, "tooltip": false, }, "cpu": { "format": "CPU {usage}%", "states": { "full": 90, }, "interval": 2, }, "memory": { "format": "RAM {percentage}%", "states": { "full": 90, }, "interval": 2, }, "wlr/taskbar": { "format": "{icon}", "icon-size": 16, "tooltip-format": "{title}", "on-click": "activate", "on-click-middle": "close", }, // center "clock": { "format": "{:%A, %B %d, %Y (%R)}", "tooltip-format": "{calendar}", "calendar": { "mode" : "year", "mode-mon-col" : 3, "weeks-pos" : "right", "on-scroll" : 1, "format": { "months": "{}", "days": "{}", "weeks": "W{}", "weekdays": "{}", "today": "{}", } }, "actions": { "on-click-right": "mode", "on-scroll-up": "tz_up", "on-scroll-down": "tz_down", "on-scroll-up": "shift_up", "on-scroll-down": "shift_down", } }, // right "tray": { "spacing": 10, }, "wireplumber": { "scroll-step": 5, "format": "{icon} {volume}%", "format-icons": ["\uF026", "\uF027", "\uF028"], "format-muted": "Muted {volume}%", "on-click": "wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle", "on-click-right": "pavucontrol", }, "backlight": { "on-scroll-down": "light -U 5", "on-scroll-up": "light -A 5", "format": "{icon} {percent}%", "format-icons": ["\uF186", "\uF0EB"], "tooltip": false, }, "battery": { "interval": 60, "states": { "warning": 30, "critical": 15, }, "format": "{icon} {capacity}%", "format-icons": ["\uF244", "\uF243", "\uF242", "\uF241", "\uF240"], }, }