diff --git a/ags/widget/bar/Workspaces.ts b/ags/widget/bar/Workspaces.ts index 25b4523..1714c33 100644 --- a/ags/widget/bar/Workspaces.ts +++ b/ags/widget/bar/Workspaces.ts @@ -1,7 +1,7 @@ import { bind, Variable } from "astal"; import { Gtk, Widget } from "astal/gtk3"; import AstalHyprland from "gi://AstalHyprland"; -import { getAppIcon } from "../../scripts/apps"; +import { getSymbolicIcon } from "../../scripts/apps"; let showWsNum: (Variable|undefined); export const showWorkspaceNumber = (show: boolean) => @@ -73,7 +73,7 @@ export function Workspaces(): Gtk.Widget { : Boolean(lastClient)), icon: lastClient ? bind(lastClient, "class").as((clss) => - getAppIcon(clss) ?? "application-x-executable-symbolic") + getSymbolicIcon(clss) ?? "application-x-executable-symbolic") : undefined } as Widget.IconProps) ])