2020-03-06 00:29:24 +01:00
|
|
|
{
|
2022-11-02 14:52:40 +01:00
|
|
|
"layer": "top",
|
|
|
|
"height": 25,
|
2022-04-13 18:13:05 +02:00
|
|
|
"modules-left": ["sway/workspaces" ],
|
|
|
|
"modules-center": ["custom/org-pomodoro", "clock"],
|
2020-05-31 02:21:03 +02:00
|
|
|
"modules-right": ["mpd", "network", "pulseaudio", "battery", "battery#bat2"],
|
2020-03-06 00:29:24 +01:00
|
|
|
"mpd": {
|
2020-05-24 02:23:06 +02:00
|
|
|
"format": "<span foreground='#88C0D0'>{stateIcon}</span> {title}",
|
2020-03-06 00:29:24 +01:00
|
|
|
"format-disconnected": "",
|
|
|
|
"format-stopped": "{stateIcon} ",
|
|
|
|
"unknown-tag": "N/A",
|
|
|
|
"interval": 2,
|
|
|
|
"consume-icons": {
|
|
|
|
"on": " "
|
|
|
|
},
|
|
|
|
"state-icons": {
|
2020-05-24 02:23:06 +02:00
|
|
|
"paused": "",
|
|
|
|
"playing": ""
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
2022-05-11 11:48:09 +02:00
|
|
|
"tooltip-format": "{elapsedTime:%H:%M:%S}/{totalTime:%H:%M:%S}",
|
2022-04-25 06:40:54 +02:00
|
|
|
"tooltip-format-disconnected": "MPD (disconnected)",
|
2022-11-02 14:52:40 +01:00
|
|
|
"title-len": 50,
|
|
|
|
"on-click": "mpc toggle",
|
|
|
|
"on-click-right": "mpc stop"
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
|
|
|
"clock": {
|
|
|
|
"format": "{:%a %d %b %H:%M}",
|
2022-04-11 13:31:00 +02:00
|
|
|
"format-alt": "{:%Y-%m-%d}"
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
|
|
|
"battery": {
|
2020-06-06 15:52:24 +02:00
|
|
|
"bat": "BAT0",
|
2020-03-06 00:29:24 +01:00
|
|
|
"states": {
|
2020-05-31 02:21:03 +02:00
|
|
|
"good": 95,
|
2022-04-16 01:35:45 +02:00
|
|
|
"warning": 30,
|
|
|
|
"critical": 10
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
2020-05-24 02:23:06 +02:00
|
|
|
"format": "<span foreground='#88C0D0'>{icon}</span> {capacity}%",
|
|
|
|
"format-charging": "<span foreground='#88C0D0'></span> {capacity}%",
|
|
|
|
"format-plugged": "<span foreground='#88C0D0'></span> {capacity}%",
|
2020-03-06 00:29:24 +01:00
|
|
|
"format-alt": "{time} {icon}",
|
2020-05-31 02:21:03 +02:00
|
|
|
"format-full": "<span foreground='#88C0D0'></span> 100%",
|
2020-05-24 02:23:06 +02:00
|
|
|
"format-icons": ["", "", ""]
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
|
|
|
"battery#bat2": {
|
2020-06-06 15:52:24 +02:00
|
|
|
"bat": "BAT1",
|
2020-05-31 02:21:03 +02:00
|
|
|
"states": {
|
|
|
|
"good": 95,
|
2022-04-16 01:35:45 +02:00
|
|
|
"warning": 30,
|
|
|
|
"critical": 10
|
2020-05-31 02:21:03 +02:00
|
|
|
},
|
|
|
|
"format": "<span foreground='#88C0D0'>{icon}</span> {capacity}%",
|
|
|
|
"format-charging": "<span foreground='#88C0D0'></span> {capacity}%",
|
|
|
|
"format-plugged": "<span foreground='#88C0D0'></span> {capacity}%",
|
|
|
|
"format-alt": "{time} {icon}",
|
|
|
|
"format-full": "<span foreground='#88C0D0'></span> 100%",
|
|
|
|
"format-icons": ["", "", ""]
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
|
|
|
"network": {
|
2020-05-24 02:23:06 +02:00
|
|
|
"format-wifi": "<span foreground='#88C0D0'>{icon}</span> {essid}",
|
2020-06-22 22:26:11 +02:00
|
|
|
"format-ethernet": "<span foreground='#88C0D0'></span> Connected",
|
2020-03-06 00:29:24 +01:00
|
|
|
"format-linked": "{ifname} (No IP) ",
|
2020-05-24 02:23:06 +02:00
|
|
|
"format-disconnected": "<span foreground='#88C0D0'>睊</span> Disconnected",
|
2020-03-06 00:29:24 +01:00
|
|
|
"format-alt": "{ifname}: {ipaddr}/{cidr}",
|
2021-02-11 00:37:09 +01:00
|
|
|
"format-icons": ["直", "直", "直"],
|
|
|
|
"tooltip-format": "Online",
|
|
|
|
"tooltip-format-disconnected": "Offline"
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
|
|
|
"pulseaudio": {
|
2020-06-13 01:02:21 +02:00
|
|
|
"format": "<span foreground='#88C0D0'>{icon}</span> {volume}%",
|
2020-05-24 02:23:06 +02:00
|
|
|
"format-muted": "<span foreground='#88C0D0'>婢</span>",
|
2020-03-06 00:29:24 +01:00
|
|
|
"format-icons": {
|
2020-05-24 02:23:06 +02:00
|
|
|
"default": ["", "墳", ""]
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
2022-08-13 00:07:51 +02:00
|
|
|
"on-click": "",
|
2022-12-19 18:26:09 +01:00
|
|
|
"ignored-sinks": ["Easy Effects Sink"]
|
2020-03-06 00:29:24 +01:00
|
|
|
},
|
2022-04-13 11:00:19 +02:00
|
|
|
"custom/org-pomodoro": {
|
|
|
|
"format": "<span foreground='#88C0D0'>祥</span> {}",
|
|
|
|
"exec": "$HOME/.local/share/scripts/org-clock-status",
|
|
|
|
"interval": 2
|
2020-03-06 00:29:24 +01:00
|
|
|
}
|
|
|
|
}
|