73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
import Hyprland from 'resource:///com/github/Aylur/ags/service/hyprland.js';
|
|
import Variable from 'resource:///com/github/Aylur/ags/variable.js';
|
|
|
|
import { Box, EventBox, Revealer, Window } from 'resource:///com/github/Aylur/ags/widget.js';
|
|
|
|
|
|
const BarCloser = (variable) => Window({
|
|
name: 'bar-closer',
|
|
visible: false,
|
|
anchor: ['top', 'bottom', 'left', 'right'],
|
|
layer: 'overlay',
|
|
|
|
child: EventBox({
|
|
onHover: (self) => {
|
|
variable.value = false;
|
|
self.get_parent().visible = false;
|
|
},
|
|
|
|
child: Box({
|
|
css: 'padding: 1px',
|
|
}),
|
|
}),
|
|
});
|
|
|
|
export default (props) => {
|
|
const Revealed = Variable(true);
|
|
const barCloser = BarCloser(Revealed);
|
|
|
|
return Box({
|
|
css: 'min-height: 1px',
|
|
hexpand: true,
|
|
vertical: true,
|
|
|
|
connections: [
|
|
[Hyprland.active, () => {
|
|
const workspace = Hyprland.getWorkspace(
|
|
Hyprland.active.workspace.id,
|
|
);
|
|
|
|
Revealed.value = !workspace?.hasfullscreen;
|
|
}],
|
|
|
|
[Hyprland, (_, fullscreen) => {
|
|
Revealed.value = !fullscreen;
|
|
}, 'fullscreen'],
|
|
],
|
|
|
|
children: [
|
|
Revealer({
|
|
...props,
|
|
transition: 'slide_down',
|
|
revealChild: true,
|
|
|
|
binds: [['revealChild', Revealed, 'value']],
|
|
}),
|
|
|
|
Revealer({
|
|
binds: [['revealChild', Revealed, 'value', (v) => !v]],
|
|
|
|
child: EventBox({
|
|
onHover: () => {
|
|
barCloser.visible = true;
|
|
Revealed.value = true;
|
|
},
|
|
|
|
child: Box({
|
|
css: 'min-height: 5px;',
|
|
}),
|
|
}),
|
|
}),
|
|
],
|
|
});
|
|
};
|