89 lines
2.3 KiB
Plaintext
89 lines
2.3 KiB
Plaintext
// __ __ _
|
|
// \ \ / /_ _ _ _| |__ __ _ _ __
|
|
// \ \ /\ / / _` | | | | '_ \ / _` | '__|
|
|
// \ V V / (_| | |_| | |_) | (_| | |
|
|
// \_/\_/ \__,_|\__, |_.__/ \__,_|_|
|
|
// |___/
|
|
//
|
|
// by Stephan Raabe (2023)
|
|
// -----------------------------------------------------
|
|
//
|
|
{
|
|
// General Settings
|
|
"layer": "top",
|
|
"margin-bottom": 0,
|
|
"layer": "top",
|
|
"margin-left": 0,
|
|
"margin-right": 0,
|
|
"spacing": 0,
|
|
|
|
// Load Modules
|
|
"include": [
|
|
"~/.config/ml4w/settings/waybar-quicklinks.json",
|
|
"~/.config/waybar/modules.json"
|
|
],
|
|
|
|
// Updates Count
|
|
"custom/updates": {
|
|
"format": " {}",
|
|
"escape": true,
|
|
"return-type": "json",
|
|
"exec": "~/.config/ml4w/scripts/updates.sh",
|
|
"restart-interval": 60,
|
|
"on-click": "$(cat ~/.config/ml4w/settings/terminal.sh) --class dotfiles-floating -e ~/.config/ml4w/scripts/installupdates.sh",
|
|
"on-click-right": "~/.config/ml4w/settings/software.sh"
|
|
},
|
|
|
|
// Pulseaudio
|
|
"pulseaudio": {
|
|
// "scroll-step": 1, // %, can be a float
|
|
"format": "{icon} {volume}%",
|
|
"format-bluetooth": "{volume}% {icon} {format_source}",
|
|
"format-bluetooth-muted": " {icon} {format_source}",
|
|
"format-muted": " {format_source}",
|
|
"format-source": "{volume}% ",
|
|
"format-source-muted": "",
|
|
"format-icons": {
|
|
"headphone": " ",
|
|
"hands-free": " ",
|
|
"headset": " ",
|
|
"phone": " ",
|
|
"portable": " ",
|
|
"car": " ",
|
|
"default": [" ", " ", " "]
|
|
},
|
|
"on-click": "pavucontrol"
|
|
},
|
|
|
|
// Modules Left
|
|
"modules-left": [
|
|
"custom/appmenuicon",
|
|
"hyprland/workspaces",
|
|
"group/links",
|
|
"group/quicklinks",
|
|
"custom/empty"
|
|
],
|
|
|
|
// Modules Center
|
|
"modules-center": [
|
|
"hyprland/window",
|
|
"custom/empty"
|
|
],
|
|
|
|
// Modules Right
|
|
"modules-right": [
|
|
"custom/updates",
|
|
"pulseaudio",
|
|
//"backlight",
|
|
"bluetooth",
|
|
"battery",
|
|
"network",
|
|
"group/hardware",
|
|
"group/tools",
|
|
"custom/exit",
|
|
"clock",
|
|
"tray",
|
|
"custom/ml4w-welcome"
|
|
]
|
|
}
|