[AGS] Bar progress

This commit is contained in:
2025-04-19 18:20:32 +02:00
parent 78e472beb8
commit b2f1d8fd9e
8 changed files with 249 additions and 107 deletions

View File

@@ -19,7 +19,7 @@ const SysTray = () => {
}
const HyprlandWorkspace = () => {
const Workspace = () => {
const hypr = AstalHyprland.get_default()
return <box className={"HyprlandWorkspaces"}>
@@ -39,7 +39,7 @@ const HyprlandWorkspace = () => {
}
const HyprlandActiveWindow = () => {
const ActiveWindow = () => {
const hypr = AstalHyprland.get_default();
const focused = bind( hypr, "focusedClient" );
@@ -51,7 +51,7 @@ const HyprlandActiveWindow = () => {
}
export default {
HyprlandWorkspace,
HyprlandActiveWindow,
Workspace,
ActiveWindow,
SysTray
}