dotfiles/waybar/config

118 lines
3.3 KiB
Plaintext
Raw Normal View History

2024-01-16 18:33:53 -06:00
[
{
"name": "main",
"layer": "bottom",
2024-04-17 04:22:48 -05:00
"position": "top",
"height": 38,
"spacing": 0,
2024-06-25 04:13:51 -05:00
"output": "DP-1",
"reload_style_on_change": true,
2024-06-25 04:13:51 -05:00
"margin-left": 12,
"margin-right": 12,
"margin-top": 6,
"margin-bottom": 6,
2024-01-16 18:33:53 -06:00
"modules-left": [
"wireplumber",
"disk",
"memory",
"cpu",
2024-01-21 00:12:07 -06:00
"custom/gpu",
2024-01-16 18:33:53 -06:00
"temperature"
],
2024-01-16 23:14:21 -06:00
"modules-center": ["hyprland/workspaces"],
2024-01-16 18:33:53 -06:00
"modules-right": [
"tray",
"network#ethernet",
"clock",
"custom/poweroff"
],
"clock": {
2024-01-24 19:28:47 -06:00
"interval": 1,
"format": "<b>{:%I:%M:%S %p}</b>",
2024-01-16 18:33:53 -06:00
"format-alt": "{:%Y-%m-%d}",
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
},
"cpu": {
"format": " {usage}%",
2024-01-21 00:12:07 -06:00
"interval": 5,
2024-01-16 18:33:53 -06:00
"tooltip": false
},
"disk": {
"format": " {}%",
"tooltip-format": "{used} / {total} used"
},
"idle_inhibitor": {
"format": "{icon}",
"format-icons": {
"activated": "",
"deactivated": ""
}
},
"memory": {
"format": " {}%",
"tooltip-format": "{used:0.1f}G / {total:0.1f}G used"
},
"temperature": {
2024-01-21 00:12:07 -06:00
"format": "{icon} {temperatureC}°C ",
2024-01-16 18:33:53 -06:00
"format-icons": ["", "", "", "", ""],
2024-01-21 00:12:07 -06:00
"hwmon-path": "/sys/class/thermal/thermal_zone2/temp",
"critical-threshold": 80,
"interval": 5
2024-01-16 18:33:53 -06:00
},
"network#ethernet": {
"interface": "enp*",
"format-ethernet": "",
"format-wifi": "",
"format-linked": "",
"format-disconnected": "",
"tooltip-format": "{ifname}: {ipaddr}/{cidr}",
"on-click": "nm-connection-editor"
},
"sway/mode": {
"format": "<span style=\"italic\">{}</span>"
},
"hyprland/workspaces": {
2024-01-16 23:14:21 -06:00
"format": "{icon}",
2024-01-16 18:33:53 -06:00
"sort-by-number": true,
"all-outputs": true,
2024-01-16 23:14:21 -06:00
"disable-scroll": true,
"active-only": false,
"format-icons": {
"default": "",
"persistent": "",
},
"persistent-workspaces": {
"1": [ ],
"2": [ ],
"3": [ ],
"4": [ ],
"5": [ ]
2024-01-16 18:33:53 -06:00
}
2024-01-16 23:14:21 -06:00
2024-01-16 18:33:53 -06:00
},
"wireplumber": {
"format": " {volume}%",
"format-muted": " 0%",
"on-click": "pavucontrol",
"on-click-right": "helvum",
"max-volume": 100,
"scroll-step": 5
},
"tray": {
"icon-size": 21,
"spacing": 10
},
2024-01-21 00:12:07 -06:00
"custom/gpu": {
"format": "󰔂 {}%",
"interval": 5,
"tooltip": false,
"exec": "nvidia-smi --query | grep Gpu | tail -1 | awk '{print $3}'"
},
2024-01-16 18:33:53 -06:00
"custom/poweroff": {
"tooltip": false,
"format": " ",
"on-click": "bash $HOME/.config/waybar/scripts/poweroff.sh"
},
}
]