diff options
Diffstat (limited to '')
| -rw-r--r-- | .config/waybar/config | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/.config/waybar/config b/.config/waybar/config new file mode 100644 index 0000000..647428b --- /dev/null +++ b/.config/waybar/config @@ -0,0 +1,57 @@ +{ + "layer": "top", + "height": 40, + "modules-left": ["custom/launcher", "hyprland/workspaces", "hyprland/window"], + "modules-right": ["tray", "cpu", "backlight", "battery", "clock"], + + // Modules configuration + "custom/launcher": { + "format": "<span font='24'></span>" + }, + "hyprland/workspaces": { + "persistent-workspaces": { + "*": 9 + }, + "disable-scroll": true, + "format": "{icon}", + "on-click": "activate", + "format-icons": { + "urgent": "", + "active": "", + "empty": "", + "default": "", + "sort-by-number": true + }, + }, + "hyprland/window": { + "format": "> {title}", + "separate-outputs": true + }, + "tray": { + "spacing": 10 + }, + "clock": { + "timezone": "Asia/Kolkata", + "format": " {:%Y-%M-%d %H:%M}", + }, + "cpu": { + "format": " {usage}%", + "tooltip": false + }, + "backlight": { + "format": "{icon} {percent}%", + "format-icons": ["", "", "", "", "", "", "", "", ""] + }, + "battery": { + "bat": "BAT1", + "states": { + "warning": 30, + "critical": 15 + }, + "format": "{icon} {capacity}%", + "format-charging": " {capacity}%+", + "format-plugged": " {capacity}%", + "format-icons": ["", "", "", "", ""] + } +} + |
