mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
80 lines
1.9 KiB
JSON
80 lines
1.9 KiB
JSON
// -*- mode: jsonc -*-
|
|
{
|
|
"layer": "top",
|
|
"position": "top",
|
|
"modules-left": ["hyprland/workspaces"],
|
|
"modules-center": ["clock"],
|
|
"modules-right": [
|
|
"pulseaudio",
|
|
"tray",
|
|
"cpu",
|
|
"memory",
|
|
"battery",
|
|
"network",
|
|
"custom/lock",
|
|
],
|
|
"hyprland/workspaces": {
|
|
"format": "{name}: {icon}",
|
|
"format-icons": {
|
|
"active": "",
|
|
"default": "",
|
|
},
|
|
},
|
|
"tray": {
|
|
"icon-size": 21,
|
|
"spacing": 10,
|
|
},
|
|
"clock": {
|
|
"timezone": "America/Denver",
|
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
"format": "{:%d - %H:%M}",
|
|
},
|
|
"network": {
|
|
"format-wifi": " ",
|
|
"format-ethernet": " ",
|
|
"format-disconnected": " ",
|
|
"interval": 5,
|
|
"tooltip": false,
|
|
},
|
|
"cpu": {
|
|
"interval": 1,
|
|
"format": " {icon0}{icon1}{icon2}{icon3} {usage:>2}%",
|
|
"format-icons": ["▁", "▂", "▃", "▄", "▅", "▆", "▇", "█"],
|
|
},
|
|
"memory": {
|
|
"interval": 30,
|
|
"format": " {used:0.1f}G/{total:0.1f}G",
|
|
},
|
|
"pulseaudio": {
|
|
"format": "{icon} {volume}%",
|
|
"format-muted": "",
|
|
"format-icons": {
|
|
"default": ["", "", " "],
|
|
},
|
|
"on-click": "pavucontrol",
|
|
},
|
|
"custom/lock": {
|
|
"tooltip": false,
|
|
"on-click": "sh -c '(sleep 0.5s; hyprlock)' & disown",
|
|
"format": "",
|
|
},
|
|
"later": {
|
|
"format": "<span class='icon'>{icon}</span> <span class='text'>{text}</span>",
|
|
},
|
|
"battery": {
|
|
"states": {
|
|
// "good": 95,
|
|
"warning": 30,
|
|
"critical": 15,
|
|
},
|
|
"format": "{capacity}% {icon}",
|
|
"format-full": "{capacity}% {icon}",
|
|
"format-charging": "{capacity}% ",
|
|
"format-plugged": "{capacity}% ",
|
|
"format-alt": "{time} {icon}",
|
|
// "format-good": "", // An empty format will hide the module
|
|
// "format-full": "",
|
|
"format-icons": ["", "", "", "", ""],
|
|
},
|
|
}
|