diff options
| author | Raghuram Subramani <raghus2247@gmail.com> | 2023-10-27 13:52:56 +0530 | 
|---|---|---|
| committer | Raghuram Subramani <raghus2247@gmail.com> | 2023-10-27 13:52:56 +0530 | 
| commit | c9ff6c621e21e5804ef07b1f5be0395ffed5e43b (patch) | |
| tree | 3d969c436fa786d8d948431615f7528fe94c70ed /.config/waybar/config | |
| parent | 7437543114370944daab5195df0cec3ee40b10d5 (diff) | |
wayland config
Diffstat (limited to '.config/waybar/config')
| -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": ["", "", "", "", ""] +  } +} +  | 
