125 lines
2.8 KiB
Plaintext
125 lines
2.8 KiB
Plaintext
// Angelo's Waybar config
|
|
// https://github.com/angelofallars/dotfiles
|
|
|
|
{
|
|
"layer": "bottom",
|
|
"height": 33,
|
|
"spacing": 0,
|
|
"margin-top": 4,
|
|
|
|
// If you're using sway, replace `river/tags` with `sway/workspaces` .
|
|
|
|
"modules-left": ["sway/workspaces"],
|
|
"modules-right": ["tray","cpu", "memory", "battery", "clock#date", "clock", "pulseaudio"],
|
|
|
|
"sway/workspaces": {
|
|
"disable-scroll": true,
|
|
"disable-markup" : false,
|
|
"all-outputs": true,
|
|
"format": " {icon} ",
|
|
//"format":"{icon}",
|
|
"format-icons": {
|
|
"1": "一",
|
|
"2": "二",
|
|
"3": "三",
|
|
"4": "四",
|
|
"5": "五",
|
|
"6": "六",
|
|
"7": "七",
|
|
"8": "八",
|
|
"9": "九",
|
|
"10": "十",
|
|
"11": "十一",
|
|
"12": "十二",
|
|
"13": "十三",
|
|
"14": "十四",
|
|
"15": "十五",
|
|
"16": "十六",
|
|
"17": "十七",
|
|
"18": "十八",
|
|
"19": "十九",
|
|
"20": "二十",
|
|
"21": "二十一",
|
|
"22": "二十二",
|
|
"23": "二十三",
|
|
"24": "二十四",
|
|
"25": "二十五",
|
|
"26": "二十六",
|
|
"27": "二十七",
|
|
"28": "二十八",
|
|
"29": "二十九",
|
|
"30": "三十"
|
|
}
|
|
},
|
|
"cpu": {
|
|
"interval": 5,
|
|
"tooltip": false,
|
|
"format": " cpu {usage}%", // Icon: microchip
|
|
"states": {
|
|
"warning": 70,
|
|
"critical": 90
|
|
},
|
|
"on-click": ""
|
|
},
|
|
"memory": {
|
|
"interval": 5,
|
|
"format": "memory {}%", // Icon: memory
|
|
"states": {
|
|
"warning": 70,
|
|
"critical": 90
|
|
},
|
|
"on-click": ""
|
|
},
|
|
|
|
"battery": {
|
|
"states": {
|
|
"good": 100,
|
|
"warning": 30,
|
|
"critical": 15
|
|
},
|
|
"format": "{icon} {capacity}%",
|
|
"format-icons": [
|
|
"",
|
|
"",
|
|
"",
|
|
"",
|
|
""
|
|
],
|
|
"on-click": ""
|
|
},
|
|
|
|
"tray": {
|
|
// "icon-size": 21,
|
|
// "spacing": 10
|
|
},
|
|
|
|
"clock": {
|
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
"format": "{:%I:%M %p}",
|
|
"timezone": "America/Toronto",
|
|
"on-click": ""
|
|
},
|
|
|
|
"clock#date": {
|
|
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
|
"format": "{:%B %d, %A}",
|
|
"timezone": "America/Toronto",
|
|
"on-click": ""
|
|
},
|
|
|
|
"pulseaudio": {
|
|
"format": "{icon} {volume}%",
|
|
"format-bluetooth": "{icon} {volume}%",
|
|
"format-icons": {
|
|
"headphone": "",
|
|
"default": [
|
|
"",
|
|
"",
|
|
""
|
|
]
|
|
},
|
|
"on-click": "pavucontrol"
|
|
},
|
|
}
|
|
|