Merge branch 'main' into ags-config

This commit is contained in:
Zhongheng Liu 2024-09-01 09:28:12 +03:00
commit 99493bc1ce
No known key found for this signature in database
12 changed files with 342 additions and 41 deletions

View file

@ -41,7 +41,7 @@ const Workspaces = () => Widget.EventBox({
function ClientTitle() {
return Widget.Label({
class_name: "client-title",
label: hyprland.active.client.bind("title"),
label: hyprland.active.client.bind("title").as(title => title.length <= 30 ? title : `${title.substring(0, 29)}...`),
})
}
const WifiIndicator = () => Widget.Box({