mirror of
https://git.sr.ht/~coasteen/dotfiles
synced 2025-11-04 14:47:38 +01:00
89 lines
1.9 KiB
JSON
89 lines
1.9 KiB
JSON
// -*- mode: jsonc -*-
|
|
{
|
|
"layer": "bottom",
|
|
"position": "bottom",
|
|
"height": 30,
|
|
"spacing": 4,
|
|
|
|
// Choose the order of the modules
|
|
"modules-left": [
|
|
"hyprland/workspaces",
|
|
"hyprland/window",
|
|
],
|
|
|
|
"modules-right": [
|
|
"battery",
|
|
"cpu",
|
|
"memory",
|
|
// "disk",
|
|
"clock",
|
|
"tray"
|
|
],
|
|
|
|
// Modules configuration
|
|
"hyprland/workspaces": {
|
|
"disable-scroll": true,
|
|
"all-outputs": true,
|
|
"warp-on-scroll": false,
|
|
"format": "{name}",
|
|
"persistent-workspaces": {
|
|
"1": "1",
|
|
"2": "2",
|
|
"3": "3",
|
|
"4": "4",
|
|
"5": "5",
|
|
"6": "6",
|
|
"7": "7",
|
|
"8": "8",
|
|
"9": "9",
|
|
"10": "10",
|
|
},
|
|
},
|
|
"hyprland/window" : {
|
|
"max-length": 40,
|
|
"seperate-outputs": false
|
|
},
|
|
"tray": {
|
|
// "icon-size": 21,
|
|
"spacing": 10
|
|
// "icons": {
|
|
// "blueman": "bluetooth",
|
|
// "TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png"
|
|
// }
|
|
},
|
|
"clock": {
|
|
"format": "{:%I:%M %p}",
|
|
"format-alt": "{:%Y-%m-%d %I:%M %p}"
|
|
},
|
|
"cpu": {
|
|
"format": "CPU: {usage}%",
|
|
"tooltip": false
|
|
},
|
|
"memory": {
|
|
"format": "MEM: {used}GiB"
|
|
},
|
|
"disk": {
|
|
"interval": 60,
|
|
"path": "/",
|
|
"format": "DISK: {free} (free)"
|
|
},
|
|
"battery": {
|
|
"states": {
|
|
"good": 95,
|
|
"warning": 30,
|
|
"critical": 15
|
|
},
|
|
"format": "BAT: {capacity}%{time}",
|
|
"format-plugged": "",
|
|
"format-alt": "Bat {capacity}%",
|
|
"format-time": "{H}:{M}",
|
|
},
|
|
"network": {
|
|
"format": "Online",
|
|
"format-disconnected": "Disconnected ⚠"
|
|
},
|
|
"custom/sep": {
|
|
"format" : "|",
|
|
"interval" : 0
|
|
}
|
|
}
|