dotfiles/.config/waybar/config

74 lines
1.9 KiB
Text
Raw Normal View History

2024-06-02 06:06:59 -05:00
{
"layer": "bottom",
"position": "top",
"height": 24,
2024-06-02 09:31:22 -05:00
"spacing": 15,
2024-06-02 06:06:59 -05:00
"modules-left": ["sway/workspaces","sway/mode"],
2024-06-02 09:31:22 -05:00
"modules-center": ["clock"],
2025-05-28 05:37:15 -05:00
"modules-right": ["tray","idle_inhibitor","bluetooth","network","battery","pulseaudio"],
2024-08-17 17:51:01 +00:00
2024-06-02 06:06:59 -05:00
"sway/mode": {
"format": "{}"
},
"sway/window": {
"format": "{title}"
},
2024-06-05 06:19:35 -05:00
"network": {
2024-08-17 17:51:01 +00:00
"format-wifi": "{essid} ({signalStrength}%) ",
"format-ethernet": "{ifname}: {ipaddr}/{cidr} ",
2024-06-15 08:31:47 -05:00
"format-disconnected": "󰖪",
2025-05-12 05:22:30 -05:00
"interval": 1,
"on-click": "nm-connection-editor"
2024-06-05 06:19:35 -05:00
},
2024-06-02 06:06:59 -05:00
"battery": {
"bat": "BAT0",
"states": {
"good": 95,
"warning": 30,
"critical": 5
},
2024-06-02 09:31:22 -05:00
"format": "Battery: {capacity}%",
"format-charging": "Battery: {capacity}% (charging)",
"format-plugged": "Battery: {capacity}% (plugged)",
2024-06-02 06:06:59 -05:00
},
"clock": {
2024-06-04 18:31:56 -05:00
"format": "{:%I:%M %p %m/%d/%Y}",
2024-06-02 06:06:59 -05:00
"calendar": {
"format": {
"months": "<span color='#ffead3'><b>{}</b></span>",
"today": "<span color='#ff6699'><b>{}</b></span>"
}
}
},
"pulseaudio": {
2024-06-04 06:52:47 -05:00
"format": "{icon} {volume}%",
2024-06-02 06:06:59 -05:00
"format-icons": {
"default": ["\uf026", "\uf027", "\uf028"]
},
"on-click": "pactl set-sink-mute @DEFAULT_SINK@ toggle",
2025-06-07 09:51:35 -05:00
"on-click-right": "$HOME/.config/scripts/audioswitch.sh",
2024-06-02 06:06:59 -05:00
"format-muted": "\uf00d {volume}%"
},
"tray": {
"icon-size": 20,
"spacing": 10
},
2024-06-17 04:47:55 -05:00
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "\uf06e",
"deactivated": "\uf070"
}
2025-05-12 05:22:30 -05:00
},
"bluetooth": {
"format": " ",
"format-disabled": "󰂳",
"format-connected": "󰂱 {num_connections}",
"tooltip-format": " {device_alias}",
"tooltip-format-connected": "{device_enumerate}",
"tooltip-format-enumerate-connected": " {device_alias} 󰂄{device_battery_percentage}%",
"tooltip": true,
"on-click": "blueman-manager",
},
2024-06-02 06:06:59 -05:00
}