9 lines
304 B
JavaScript
9 lines
304 B
JavaScript
import Hyprland from 'resource:///com/github/Aylur/ags/service/hyprland.js';
|
|
import { Label } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
|
|
export default () => Label({
|
|
style: 'color: #CBA6F7; font-size: 18px',
|
|
truncate: 'end',
|
|
binds: [['label', Hyprland.active.client, 'title']],
|
|
});
|