dotfiles/waybar/config

121 lines
3.4 KiB
Plaintext
Raw Permalink Normal View History

2024-01-16 18:33:53 -06:00
[
{
"name": "main",
"layer": "bottom",
"position": "top",
2024-11-19 00:36:14 -06:00
"height": 40,
"spacing": 0,
2024-06-25 04:13:51 -05:00
"output": "DP-1",
"reload_style_on_change": true,
2024-01-16 18:33:53 -06:00
"modules-left": [
2024-11-19 00:36:14 -06:00
"custom/appmenu",
2024-01-16 18:33:53 -06:00
"disk",
"memory",
"cpu",
2024-01-21 00:12:07 -06:00
"custom/gpu",
2024-01-16 18:33:53 -06:00
"temperature"
],
2024-11-19 00:36:14 -06:00
"modules-center": [
"hyprland/workspaces"
],
2024-01-16 18:33:53 -06:00
"modules-right": [
"tray",
"wireplumber",
2024-01-16 18:33:53 -06:00
"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": " {percentage_used}%",
2024-01-16 18:33:53 -06:00
"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-11-19 00:36:14 -06:00
"custom/appmenu": {
"format": "",
"on-click": "pkill -x rofi || rofi -show drun"
},
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": " ",
2024-11-19 00:36:14 -06:00
"on-click": "pgrep poweroff.sh || $HOME/.config/waybar/scripts/poweroff.sh"
2024-01-16 18:33:53 -06:00
},
}
]