diff options
Diffstat (limited to 'waybar/config')
| -rw-r--r-- | waybar/config | 23 | 
1 files changed, 17 insertions, 6 deletions
| diff --git a/waybar/config b/waybar/config index e17ac9a..8325c86 100644 --- a/waybar/config +++ b/waybar/config @@ -2,19 +2,30 @@      "layer": "top",      "position": "top",      "height": 36, -    "output": "%%DISPLAY%%", +    //"output": "%%DISPLAY%%",      "spacing": 4,      //"margin-top": 5,      //"margin-bottom":5,      // Choose the order of the modules -    "modules-left":[ "custom/launcher"], +    "modules-left":[ "wlr/workspaces", "custom/launcher", "hyprland/window"],      "modules-center":[],      "modules-right":[ "mpd", "idle_inhibitor", "pulseaudio", "cpu", "memory", "temperature", "backlight",  "battery#bat0", "battery#bat1", "network", "clock", "tray", "custom/power"],      // Modules configuration +    "wlr/workspaces": { +      "format": "{name}", +      "active-only": false, +      "all-outputs": true, +      "on-scroll-up": "hyprctl dispatch workspace e+1", +      "on-scroll-down": "hyprctl dispatch workspace e-1" +    }, +    "hyprland/window": { +      "separate-outputs": true, +      "format": "{}" +    },      "keyboard-state": {          "numlock": true,          "capslock": true, @@ -25,14 +36,14 @@          }      },      "mpd": { -      "format": "{artist}-{title}", +      "format": "{artist} - {title}",        "format-stopped": "", -      "format-paused": "{artist}-{title}", +      "format-paused": "{artist} - {title}",        "format-disconnected": "",        "artist-len": 15,        "title-len": 15,        //"album-len": 15, -      //"max-length": 30, +      //"max-length": 200,        "on-click": "mpc toggle"      },      "idle_inhibitor": { @@ -63,7 +74,7 @@          // "hwmon-path": "/sys/class/hwmon/hwmon2/temp1_input",          "critical-threshold": 80,          // "format-critical": "{temperatureC}°C {icon}", -        "format": "{temperatureC}°C {icon}", +        "format": "{temperatureC}°C",          "format-icons": ["", "", ""]      },      "backlight": { | 
