diff options
Diffstat (limited to '.config/waybar/config')
-rw-r--r-- | .config/waybar/config | 55 |
1 files changed, 13 insertions, 42 deletions
diff --git a/.config/waybar/config b/.config/waybar/config index 5bf708d..2cee81c 100644 --- a/.config/waybar/config +++ b/.config/waybar/config @@ -1,62 +1,33 @@ -// -*- mode: json -*- +// -*- mode: js-json -*- { "layer": "top", "position": "top", "modules-left": [ - "sway/workspaces", - "custom/right-arrow-dark" + "hyprland/workspaces" ], "modules-center": [ - "custom/left-arrow-dark", - "clock#1", - "custom/left-arrow-light", - "custom/left-arrow-dark", - "clock#2", - "custom/right-arrow-dark", - "custom/right-arrow-light", - "clock#3", - "custom/right-arrow-dark" + "clock#3" ], "modules-right": [ - "custom/left-arrow-dark", "pulseaudio", - "custom/left-arrow-light", - "custom/left-arrow-dark", "memory", - "custom/left-arrow-light", - "custom/left-arrow-dark", "cpu", - "custom/left-arrow-light", - "custom/left-arrow-dark", "battery", - "custom/left-arrow-light", "tray" ], - "custom/left-arrow-dark": { - "format": "", - "tooltip": false - }, - "custom/left-arrow-light": { - "format": "", - "tooltip": false - }, - "custom/right-arrow-dark": { - "format": "", - "tooltip": false + // Modules // + "hyprland/workspaces": { + "format": "{name}", + "active-only": false, + "all-outputs": false, + "show-special": false, + "on-click": "activate", + "on-scroll-up": "hyprctl dispatch workspace e+1", + "on-scroll-down": "hyprctl dispatch workspace e-1" }, - "custom/right-arrow-light": { - "format": "", - "tooltip": false - }, - - "sway/workspaces": { - "disable-scroll": true, - "format": "{name}" - }, - "clock#1": { "format": "{:%a}", "tooltip": false @@ -66,7 +37,7 @@ "tooltip": false }, "clock#3": { - "format": "{:%y/%m/%d}", + "format": "{:%a %H:%M | %y/%m/%d}", "tooltip": false }, |