104 lines
2.7 KiB
Plaintext
Raw Normal View History

2025-07-27 10:30:33 +02:00
{
"position": "top", // Waybar position (top|bottom|left|right)
2025-08-03 15:07:48 +02:00
"height": 28, // Waybar height (to be removed for auto height)
"modules-left": ["custom/desktop-icon", "sway/workspaces"],
2025-08-03 20:31:50 +02:00
"modules-right": ["custom/checkupdates", "custom/kernel", "custom/cpu", "custom/memory", "custom/getvolume", "custom/language", "custom/currentdate", "tray"],
2025-08-03 15:07:48 +02:00
2025-07-27 10:30:33 +02:00
"sway/workspaces": {
"all-outputs": false,
2025-08-03 15:07:48 +02:00
"format": "{icon}",
"icons-only": true,
2025-07-27 10:30:33 +02:00
"format-icons": {
2025-08-03 15:07:48 +02:00
"1: ": " ",
2025-08-04 22:21:48 +02:00
"2: ": " ",
2025-08-03 15:07:48 +02:00
"3: ": " ",
"4: ": " ",
"5: ": " ",
"6: ": " ",
"7: ": " ",
"8: ": " ",
2025-08-11 14:40:13 +02:00
"9: ": " ",
2025-08-03 15:07:48 +02:00
"10: ": " ",
"11: ": " ",
"12: ": " ",
//"urgent": " ",
//"focused": " ",
"default": " ",
2025-07-27 10:30:33 +02:00
}
},
2025-08-03 15:07:48 +02:00
"custom/desktop-icon": {
2025-07-27 10:30:33 +02:00
"format": "{}",
"interval": 10,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/show_desktop_icon.sh",
2025-07-27 10:30:33 +02:00
},
2025-08-03 15:07:48 +02:00
"custom/kernel": {
2025-07-27 10:30:33 +02:00
"format": "{}",
2025-08-03 15:07:48 +02:00
"interval": 10,
"exec": "~/.config/waybar/scripts/kernel_version.sh",
2025-07-27 10:30:33 +02:00
},
"custom/currentdate": {
"format": "{}",
"interval": 2,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/current_date.sh",
2025-07-27 10:30:33 +02:00
},
"custom/getvolume": {
"format": "{}",
"interval": 2,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/get_volume.sh",
2025-07-27 10:30:33 +02:00
},
2025-08-03 20:31:50 +02:00
"custom/language": {
"format": "{}",
"interval": 10,
"exec": "~/.config/waybar/scripts/get_lang.sh",
},
2025-07-27 10:30:33 +02:00
"custom/checkupdates": {
"format": "{}",
"interval": 1800,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/checkUpdates.sh",
2025-07-27 10:30:33 +02:00
},
"custom/cpu": {
"format": "{}",
"interval": 2,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/cpu_info.sh",
2025-07-27 10:30:33 +02:00
},
"custom/memory": {
"format": "{}",
"interval": 5,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/mem_info.sh",
2025-07-27 10:30:33 +02:00
},
"custom/disk": {
"format": "{}",
"interval": 10,
2025-08-03 15:07:48 +02:00
"exec": "~/.config/waybar/scripts/disk_info.sh",
2025-07-27 10:30:33 +02:00
},
"tray": {
// "icon-size": 21,
"spacing": 5
},
2025-08-03 15:07:48 +02:00
2025-07-27 10:30:33 +02:00
"battery": {
"states": {
// "good": 95,
"warning": 30,
"critical": 15
},
"format": "{capacity}% {icon}",
"format-charging": "{capacity}% ",
"format-plugged": "{capacity}% ",
"format-alt": "{time} {icon}",
// "format-good": "", // An empty format will hide the module
// "format-full": "",
"format-icons": ["", "", "", "", ""]
}
}