nixos-configs/nixosModules/ags/config/widgets/bar/items/current-client.tsx

85 lines
2.4 KiB
TypeScript
Raw Normal View History

import { bind, Variable } from 'astal';
2024-11-21 10:32:18 -05:00
import { Gtk } from 'astal/gtk3';
2024-09-27 16:35:32 -04:00
2024-10-22 13:09:39 -04:00
import AstalApps from 'gi://AstalApps';
import AstalHyprland from 'gi://AstalHyprland';
2024-09-27 16:35:32 -04:00
import Separator from '../../misc/separator';
export default () => {
const applications = AstalApps.Apps.new();
const hyprland = AstalHyprland.get_default();
const visibleIcon = Variable<boolean>(false);
const focusedIcon = Variable<string>('');
const focusedTitle = Variable<string>('');
2024-11-25 13:25:14 -05:00
let lastFocusedAddress: string | null;
2024-11-21 10:32:18 -05:00
const updateVars = (
client: AstalHyprland.Client | null = hyprland.get_focused_client(),
) => {
2024-11-25 13:25:14 -05:00
lastFocusedAddress = client ? client.address : null;
2024-11-21 10:32:18 -05:00
const app = applications.fuzzy_query(
client?.class ?? '',
)[0];
const icon = app?.iconName;
if (icon) {
visibleIcon.set(true);
focusedIcon.set(icon);
}
else {
visibleIcon.set(false);
}
focusedTitle.set(client?.title ?? '');
2024-11-25 13:25:14 -05:00
const id = client?.connect('notify::title', (c) => {
2024-11-21 10:32:18 -05:00
if (c.get_address() !== lastFocusedAddress) {
c.disconnect(id);
}
focusedTitle.set(c.get_title());
2024-11-25 13:25:14 -05:00
});
};
updateVars();
2024-11-25 13:25:14 -05:00
hyprland.connect('notify::focused-client', () => updateVars());
2024-09-27 16:35:32 -04:00
return (
2024-11-21 10:32:18 -05:00
<revealer
transitionType={Gtk.RevealerTransitionType.SLIDE_RIGHT}
revealChild={bind(focusedTitle).as((title) => title !== '')}
2024-09-27 16:35:32 -04:00
>
2024-11-21 10:35:20 -05:00
<box>
<Separator size={8} />
<box className="bar-item current-window">
<revealer
transitionType={Gtk.RevealerTransitionType.SLIDE_RIGHT}
revealChild={bind(visibleIcon)}
>
<box>
<icon
css="font-size: 32px;"
icon={bind(focusedIcon)}
/>
<Separator size={8} />
</box>
</revealer>
<label
label={bind(focusedTitle)}
truncate
2024-11-25 13:25:14 -05:00
maxWidthChars={40}
2024-11-21 10:35:20 -05:00
/>
</box>
2024-11-21 10:32:18 -05:00
</box>
</revealer>
2024-09-27 16:35:32 -04:00
);
};