dotfiles/waybar/.config/waybar/config

83 lines
3.0 KiB
Plaintext
Raw Normal View History

2020-03-06 00:29:24 +01:00
{
"layer": "top",
"height": 25,
2022-04-13 18:13:05 +02:00
"modules-left": ["sway/workspaces" ],
"modules-center": ["custom/org-pomodoro", "clock"],
"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
},
"tooltip-format": "{elapsedTime:%H:%M:%S}/{totalTime:%H:%M:%S}",
"tooltip-format-disconnected": "MPD (disconnected)",
"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}",
"format-alt": "{:%Y-%m-%d}"
2020-03-06 00:29:24 +01:00
},
"battery": {
"bat": "BAT0",
2020-03-06 00:29:24 +01:00
"states": {
"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}",
"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": {
"bat": "BAT1",
"states": {
"good": 95,
2022-04-16 01:35:45 +02:00
"warning": 30,
"critical": 10
},
"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}",
"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}",
"format-icons": ["直", "直", "直"],
"tooltip-format": "Online",
"tooltip-format-disconnected": "Offline"
2020-03-06 00:29:24 +01:00
},
"pulseaudio": {
"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
}
}