chore: update ags and start fixing breaking changes

This commit is contained in:
matt1432 2023-12-17 00:01:58 -05:00
parent 4f349dae0f
commit 4412d13997
39 changed files with 1103 additions and 1005 deletions

View file

@ -21,6 +21,7 @@ exec(`sassc ${scss} ${css}`);
Setup(); Setup();
// TODO: get rid of 'properties' and 'binds' prop
export default { export default {
style: css, style: css,
notificationPopupTimeout: 5000, notificationPopupTimeout: 5000,

View file

@ -101,6 +101,23 @@ const Applauncher = ({ window_name = 'applauncher' } = {}) => {
className: 'applauncher', className: 'applauncher',
vertical: true, vertical: true,
setup: (self) => {
self.hook(App, (_, name, visible) => {
if (name !== window_name) {
return;
}
entry.text = '';
if (visible) {
entry.grab_focus();
}
else {
makeNewChildren();
}
});
},
children: [ children: [
Box({ Box({
className: 'header', className: 'header',
@ -119,21 +136,6 @@ const Applauncher = ({ window_name = 'applauncher' } = {}) => {
}), }),
}), }),
], ],
connections: [[App, (_, name, visible) => {
if (name !== window_name) {
return;
}
entry.text = '';
if (visible) {
entry.grab_focus();
}
else {
makeNewChildren();
}
}]],
}); });
}; };

View file

@ -13,11 +13,13 @@ const SpeakerIndicator = (props) => Icon({
const SpeakerPercentLabel = (props) => Label({ const SpeakerPercentLabel = (props) => Label({
...props, ...props,
connections: [[Audio, (label) => { setup: (self) => {
self.hook(Audio, (label) => {
if (Audio.speaker) { if (Audio.speaker) {
label.label = `${Math.round(Audio.speaker.volume * 100)}%`; label.label = `${Math.round(Audio.speaker.volume * 100)}%`;
} }
}, 'speaker-changed']], }, 'speaker-changed');
},
}); });
const SPACING = 5; const SPACING = 5;

View file

@ -12,20 +12,24 @@ const Indicator = () => Icon({
binds: [['icon', Battery, 'icon-name']], binds: [['icon', Battery, 'icon-name']],
connections: [[Battery, (self) => { setup: (self) => {
self.hook(Battery, () => {
self.toggleClassName('charging', Battery.charging); self.toggleClassName('charging', Battery.charging);
self.toggleClassName('charged', Battery.charged); self.toggleClassName('charged', Battery.charged);
self.toggleClassName('low', Battery.percent < LOW_BATT); self.toggleClassName('low', Battery.percent < LOW_BATT);
}]], });
},
}); });
const LevelLabel = (props) => Label({ const LevelLabel = (props) => Label({
...props, ...props,
className: 'label', className: 'label',
connections: [[Battery, (self) => { setup: (self) => {
self.hook(Battery, () => {
self.label = `${Battery.percent}%`; self.label = `${Battery.percent}%`;
}]], });
},
}); });
const SPACING = 5; const SPACING = 5;

View file

@ -7,7 +7,8 @@ import Separator from '../../misc/separator.js';
const Indicator = (props) => Icon({ const Indicator = (props) => Icon({
...props, ...props,
connections: [[Bluetooth, (self) => { setup: (self) => {
self.hook(Bluetooth, () => {
if (Bluetooth.enabled) { if (Bluetooth.enabled) {
self.icon = Bluetooth.connectedDevices[0] ? self.icon = Bluetooth.connectedDevices[0] ?
Bluetooth.connectedDevices[0].iconName : Bluetooth.connectedDevices[0].iconName :
@ -16,16 +17,19 @@ const Indicator = (props) => Icon({
else { else {
self.icon = 'bluetooth-disabled-symbolic'; self.icon = 'bluetooth-disabled-symbolic';
} }
}]], });
},
}); });
const ConnectedLabel = (props) => Label({ const ConnectedLabel = (props) => Label({
...props, ...props,
connections: [[Bluetooth, (self) => { setup: (self) => {
self.hook(Bluetooth, () => {
self.label = Bluetooth.connectedDevices[0] ? self.label = Bluetooth.connectedDevices[0] ?
`${Bluetooth.connectedDevices[0]}` : `${Bluetooth.connectedDevices[0]}` :
'Disconnected'; 'Disconnected';
}, 'notify::connected-devices']], }, 'notify::connected-devices');
},
}); });
const SPACING = 5; const SPACING = 5;

View file

@ -13,9 +13,11 @@ const Indicator = (props) => Icon({
const BrightnessPercentLabel = (props) => Label({ const BrightnessPercentLabel = (props) => Label({
...props, ...props,
connections: [[Brightness, (self) => { setup: (self) => {
self.hook(Brightness, () => {
self.label = `${Math.round(Brightness.screen * 100)}%`; self.label = `${Math.round(Brightness.screen * 100)}%`;
}, 'screen']], }, 'screen');
},
}); });
export default () => { export default () => {

View file

@ -8,36 +8,32 @@ const { DateTime } = GLib;
import EventBox from '../../misc/cursorbox.js'; import EventBox from '../../misc/cursorbox.js';
const ClockModule = ({ const ClockModule = () => Label({
interval = 1000,
...props
} = {}) => {
return Label({
...props,
className: 'clock', className: 'clock',
connections: [[interval, (self) => { setup: (self) => {
self.poll(1000, () => {
const time = DateTime.new_now_local(); const time = DateTime.new_now_local();
self.label = time.format('%a. ') + self.label = time.format('%a. ') +
time.get_day_of_month() + time.get_day_of_month() +
time.format(' %b. %H:%M'); time.format(' %b. %H:%M');
}]],
}); });
}; },
});
export default () => EventBox({ export default () => EventBox({
className: 'toggle-off', className: 'toggle-off',
onPrimaryClickRelease: () => App.toggleWindow('calendar'), onPrimaryClickRelease: () => App.toggleWindow('calendar'),
connections: [ setup: (self) => {
[App, (self, windowName, visible) => { self.hook(App, (_, windowName, visible) => {
if (windowName === 'calendar') { if (windowName === 'calendar') {
self.toggleClassName('toggle-on', visible); self.toggleClassName('toggle-on', visible);
} }
}], });
], },
child: ClockModule(), child: ClockModule(),
}); });

View file

@ -13,14 +13,17 @@ export default () => Box({
Icon({ Icon({
size: 30, size: 30,
connections: [[Hyprland.active.client, (self) => { setup: (self) => {
const app = Applications.query(Hyprland.active.client.class)[0]; self.hook(Hyprland.active.client, () => {
const app = Applications
.query(Hyprland.active.client.class)[0];
if (app) { if (app) {
self.icon = app.iconName; self.icon = app.iconName;
self.visible = Hyprland.active.client.title !== ''; self.visible = Hyprland.active.client.title !== '';
} }
}]], });
},
}), }),
Separator(SPACING), Separator(SPACING),

View file

@ -8,15 +8,10 @@ const DEFAULT_KB = 'at-translated-set-2-keyboard';
const SPACING = 4; const SPACING = 4;
export default () => { const Indicator = () => Label({
const rev = Revealer({
transition: 'slide_right',
child: Box({
children: [
Separator(SPACING),
Label({
css: 'font-size: 20px;', css: 'font-size: 20px;',
connections: [[Hyprland, (self, _n, layout) => { setup: (self) => {
self.hook(Hyprland, (_, _n, layout) => {
if (layout) { if (layout) {
if (layout === 'error') { if (layout === 'error') {
return; return;
@ -40,8 +35,17 @@ export default () => {
self.label = shortName ? shortName[1] : layout; self.label = shortName ? shortName[1] : layout;
}).catch(print); }).catch(print);
} }
}, 'keyboard-layout']], }, 'keyboard-layout');
}), },
});
export default () => {
const rev = Revealer({
transition: 'slide_right',
child: Box({
children: [
Separator(SPACING),
Indicator(),
], ],
}), }),
}); });

View file

@ -7,7 +7,8 @@ import Separator from '../../misc/separator.js';
const Indicator = (props) => Icon({ const Indicator = (props) => Icon({
...props, ...props,
connections: [[Network, (self) => { setup: (self) => {
self.hook(Network, () => {
if (Network.wifi.internet === 'connected' || if (Network.wifi.internet === 'connected' ||
Network.wifi.internet === 'connecting') { Network.wifi.internet === 'connecting') {
self.icon = Network.wifi.iconName; self.icon = Network.wifi.iconName;
@ -19,12 +20,14 @@ const Indicator = (props) => Icon({
else { else {
self.icon = Network.wifi.iconName; self.icon = Network.wifi.iconName;
} }
}]], });
},
}); });
const APLabel = (props) => Label({ const APLabel = (props) => Label({
...props, ...props,
connections: [[Network, (self) => { setup: (self) => {
self.hook(Network, () => {
if (Network.wifi.internet === 'connected' || if (Network.wifi.internet === 'connected' ||
Network.wifi.internet === 'connecting') { Network.wifi.internet === 'connecting') {
self.label = Network.wifi.ssid; self.label = Network.wifi.ssid;
@ -36,7 +39,8 @@ const APLabel = (props) => Label({
else { else {
self.label = 'Disconnected'; self.label = 'Disconnected';
} }
}]], });
},
}); });
const SPACING = 5; const SPACING = 5;

View file

@ -19,11 +19,13 @@ export default () => EventBox({
App.toggleWindow('notification-center'); App.toggleWindow('notification-center');
}, },
connections: [[App, (self, windowName, visible) => { setup: (self) => {
self.hook(App, (_, windowName, visible) => {
if (windowName === 'notification-center') { if (windowName === 'notification-center') {
self.toggleClassName('toggle-on', visible); self.toggleClassName('toggle-on', visible);
} }
}]], });
},
child: CenterBox({ child: CenterBox({
className: 'notif-panel', className: 'notif-panel',
@ -31,7 +33,8 @@ export default () => EventBox({
center_widget: Box({ center_widget: Box({
children: [ children: [
Icon({ Icon({
connections: [[Notifications, (self) => { setup: (self) => {
self.hook(Notifications, () => {
if (Notifications.dnd) { if (Notifications.dnd) {
self.icon = 'notification-disabled-symbolic'; self.icon = 'notification-disabled-symbolic';
} }
@ -41,7 +44,8 @@ export default () => EventBox({
else { else {
self.icon = 'notification-symbolic'; self.icon = 'notification-symbolic';
} }
}]], });
},
}), }),
Separator(SPACING), Separator(SPACING),

View file

@ -9,9 +9,11 @@ export default () => EventBox({
onPrimaryClickRelease: () => Tablet.toggleOsk(), onPrimaryClickRelease: () => Tablet.toggleOsk(),
connections: [[Tablet, (self) => { setup: (self) => {
self.hook(Tablet, () => {
self.toggleClassName('toggle-on', Tablet.oskState); self.toggleClassName('toggle-on', Tablet.oskState);
}, 'osk-toggled']], }, 'osk-toggled');
},
child: Box({ child: Box({
className: 'osk-toggle', className: 'osk-toggle',

View file

@ -26,11 +26,13 @@ export default () => EventBox({
App.toggleWindow('quick-settings'); App.toggleWindow('quick-settings');
}, },
connections: [[App, (self, windowName, visible) => { setup: (self) => {
self.hook(App, (_, windowName, visible) => {
if (windowName === 'quick-settings') { if (windowName === 'quick-settings') {
self.toggleClassName('toggle-on', visible); self.toggleClassName('toggle-on', visible);
} }
}]], });
},
child: Box({ child: Box({
className: 'quick-settings-toggle', className: 'quick-settings-toggle',

View file

@ -33,7 +33,8 @@ const SysTray = () => MenuBar({
setup: (self) => { setup: (self) => {
self.items = new Map(); self.items = new Map();
self.onAdded = (id) => { self
.hook(SystemTray, (_, id) => {
const item = SystemTray.getItem(id); const item = SystemTray.getItem(id);
if (self.items.has(id) || !item) { if (self.items.has(id) || !item) {
@ -51,9 +52,9 @@ const SysTray = () => MenuBar({
self.add(w); self.add(w);
self.show_all(); self.show_all();
w.child.revealChild = true; w.child.revealChild = true;
}; }, 'added')
self.onRemoved = (id) => { .hook(SystemTray, (_, id) => {
if (!self.items.has(id)) { if (!self.items.has(id)) {
return; return;
} }
@ -63,12 +64,8 @@ const SysTray = () => MenuBar({
self.items.get(id).destroy(); self.items.get(id).destroy();
self.items.delete(id); self.items.delete(id);
}); });
}; }, 'removed');
}, },
connections: [
[SystemTray, (self, id) => self.onAdded(id), 'added'],
[SystemTray, (self, id) => self.onRemoved(id), 'removed'],
],
}); });
export default () => { export default () => {
@ -77,9 +74,11 @@ export default () => {
return Revealer({ return Revealer({
transition: 'slide_right', transition: 'slide_right',
connections: [[SystemTray, (rev) => { setup: (self) => {
rev.revealChild = systray.get_children().length > 0; self.hook(SystemTray, () => {
}]], self.revealChild = systray.get_children().length > 0;
});
},
child: Box({ child: Box({
children: [ children: [

View file

@ -9,9 +9,11 @@ export default () => EventBox({
onPrimaryClickRelease: () => Tablet.toggleMode(), onPrimaryClickRelease: () => Tablet.toggleMode(),
connections: [[Tablet, (self) => { setup: (self) => {
self.hook(Tablet, () => {
self.toggleClassName('toggle-on', Tablet.tabletMode); self.toggleClassName('toggle-on', Tablet.tabletMode);
}, 'mode-toggled']], }, 'mode-toggled');
},
child: Box({ child: Box({
className: 'tablet-toggle', className: 'tablet-toggle',

View file

@ -43,19 +43,19 @@ const Workspace = ({ i } = {}) => {
} }
} }
}; };
},
connections: [
[Hyprland, (self) => self.update()],
self
.hook(Hyprland, () => self.update())
// Deal with urgent windows // Deal with urgent windows
[Hyprland, (self, a) => self.update(a), 'urgent-window'], .hook(Hyprland, (_, a) => {
[Hyprland.active.workspace, (self) => { self.update(a);
}, 'urgent-window')
.hook(Hyprland.active.workspace, () => {
if (Hyprland.active.workspace.id === i) { if (Hyprland.active.workspace.id === i) {
self.toggleClassName('urgent', false); self.toggleClassName('urgent', false);
} }
}], });
], },
}), }),
}), }),
}); });
@ -81,7 +81,9 @@ export default () => {
vpack: 'center', vpack: 'center',
hpack: 'start', hpack: 'start',
className: 'button active', className: 'button active',
connections: [[Hyprland.active.workspace, updateHighlight]], setup: (self) => {
self.hook(Hyprland.active.workspace, updateHighlight);
},
}); });
const widget = Overlay({ const widget = Overlay({
@ -122,7 +124,8 @@ export default () => {
}], }],
], ],
connections: [[Hyprland, (self) => { setup: (self) => {
self.hook(Hyprland, () => {
self._workspaces = self.children.filter((ch) => { self._workspaces = self.children.filter((ch) => {
return Hyprland.workspaces.find((ws) => { return Hyprland.workspaces.find((ws) => {
return ws.id === ch._id; return ws.id === ch._id;
@ -136,7 +139,8 @@ export default () => {
const TEMP_TIMEOUT = 10; const TEMP_TIMEOUT = 10;
timeout(TEMP_TIMEOUT, () => updateHighlight(highlight)); timeout(TEMP_TIMEOUT, () => updateHighlight(highlight));
}]], });
},
}), }),
}), }),
}); });

View file

@ -31,19 +31,20 @@ export default (props) => {
hexpand: true, hexpand: true,
vertical: true, vertical: true,
connections: [ setup: (self) => {
[Hyprland.active, () => { self
.hook(Hyprland.active, () => {
const workspace = Hyprland.getWorkspace( const workspace = Hyprland.getWorkspace(
Hyprland.active.workspace.id, Hyprland.active.workspace.id,
); );
Revealed.value = !workspace?.hasfullscreen; Revealed.value = !workspace?.hasfullscreen;
}], })
[Hyprland, (_, fullscreen) => { .hook(Hyprland, (_, fullscreen) => {
Revealed.value = !fullscreen; Revealed.value = !fullscreen;
}, 'fullscreen'], }, 'fullscreen');
], },
children: [ children: [
Revealer({ Revealer({

View file

@ -25,9 +25,11 @@ const Time = () => Box({
Label({ Label({
className: 'content', className: 'content',
label: 'hour', label: 'hour',
connections: [[1000, (self) => { setup: (self) => {
self.poll(1000, () => {
self.label = DateTime.new_now_local().format('%H'); self.label = DateTime.new_now_local().format('%H');
}]], });
},
}), }),
Divider(), Divider(),
@ -35,9 +37,11 @@ const Time = () => Box({
Label({ Label({
className: 'content', className: 'content',
label: 'minute', label: 'minute',
connections: [[1000, (self) => { setup: (self) => {
self.poll(1000, () => {
self.label = DateTime.new_now_local().format('%M'); self.label = DateTime.new_now_local().format('%M');
}]], });
},
}), }),
], ],
@ -49,13 +53,15 @@ const Time = () => Box({
child: Label({ child: Label({
css: 'font-size: 20px', css: 'font-size: 20px',
label: 'complete date', label: 'complete date',
connections: [[1000, (self) => { setup: (self) => {
self.poll(1000, () => {
const time = DateTime.new_now_local(); const time = DateTime.new_now_local();
self.label = time.format('%A, %B ') + self.label = time.format('%A, %B ') +
time.get_day_of_month() + time.get_day_of_month() +
time.format(', %Y'); time.format(', %Y');
}]], });
},
}), }),
}), }),

View file

@ -12,7 +12,7 @@ const TRANSITION = `transition: margin ${ANIM_DURATION}ms ease,
export default ({ export default ({
properties, properties,
connections, setup = () => {/**/},
props, props,
} = {}) => { } = {}) => {
const widget = EventBox(); const widget = EventBox();
@ -33,10 +33,11 @@ export default ({
child: emptyPlayer, child: emptyPlayer,
connections: [ setup: (self) => {
...connections, setup(self);
[gesture, (overlay, realGesture) => { self
.hook(gesture, (overlay, realGesture) => {
if (realGesture) { if (realGesture) {
overlay.list().forEach((over) => { overlay.list().forEach((over) => {
over.visible = true; over.visible = true;
@ -74,9 +75,9 @@ export default ({
${playerBox._bgStyle} ${playerBox._bgStyle}
`); `);
} }
}, 'drag-update'], }, 'drag-update')
[gesture, (overlay) => { .hook(gesture, (overlay) => {
// Don't allow gesture when only one player // Don't allow gesture when only one player
if (overlay.list().length <= 1) { if (overlay.list().length <= 1) {
return; return;
@ -108,7 +109,8 @@ export default ({
${TRANSITION} ${TRANSITION}
margin-left: -${OFFSCREEN}px; margin-left: -${OFFSCREEN}px;
margin-right: ${OFFSCREEN}px; margin-right: ${OFFSCREEN}px;
opacity: 0.7; ${playerBox._bgStyle}`); opacity: 0.7; ${playerBox._bgStyle}
`);
} }
timeout(ANIM_DURATION, () => { timeout(ANIM_DURATION, () => {
@ -126,8 +128,8 @@ export default ({
// Recenter with transition for animation // Recenter with transition for animation
playerBox.setCss(`${TRANSITION} ${playerBox._bgStyle}`); playerBox.setCss(`${TRANSITION} ${playerBox._bgStyle}`);
} }
}, 'drag-end'], }, 'drag-end');
], },
}); });
widget.add(content); widget.add(content);

View file

@ -60,9 +60,8 @@ export const CoverArt = (player, props) => CenterBox({
self.setCss(self._bgStyle); self.setCss(self._bgStyle);
} }
}); });
},
connections: [[player, (self) => { self.hook(player, () => {
execAsync(['bash', '-c', `[[ -f "${player.coverPath}" ]] && execAsync(['bash', '-c', `[[ -f "${player.coverPath}" ]] &&
coloryou "${player.coverPath}" | grep -v Warning`]) coloryou "${player.coverPath}" | grep -v Warning`])
.then((out) => { .then((out) => {
@ -89,7 +88,8 @@ export const CoverArt = (player, props) => CenterBox({
print(err); print(err);
} }
}); });
}]], });
},
}); });
export const TitleLabel = (player, props) => Label({ export const TitleLabel = (player, props) => Label({
@ -127,16 +127,19 @@ export const PlayerIcon = (player, overlay, props) => {
className: widget ? 'position-indicator' : 'player-icon', className: widget ? 'position-indicator' : 'player-icon',
size: widget ? '' : ICON_SIZE, size: widget ? '' : ICON_SIZE,
connections: [[p, (self) => { setup: (self) => {
self.hook(p, () => {
self.icon = lookUpIcon(p.entry) ? self.icon = lookUpIcon(p.entry) ?
p.entry : p.entry :
icons.mpris.fallback; icons.mpris.fallback;
}]], });
},
}), }),
}); });
return Box({ return Box({
connections: [[Mpris, (self) => { setup: (self) => {
self.hook(Mpris, () => {
const thisIndex = overlay.list() const thisIndex = overlay.list()
.indexOf(self.get_parent().get_parent()); .indexOf(self.get_parent().get_parent());
@ -147,7 +150,8 @@ export const PlayerIcon = (player, overlay, props) => {
playerIcon(player) : playerIcon(player) :
playerIcon(over._player, overlay, over); playerIcon(over._player, overlay, over);
}).reverse(); }).reverse();
}]], });
},
}); });
}; };
@ -163,38 +167,38 @@ export const PositionSlider = (player, props) => Slider({
player.position = player.length * value; player.position = player.length * value;
}, },
properties: [['update', (slider) => { setup: (self) => {
if (!slider.dragging) { const update = () => {
slider.visible = player.length > 0; if (!self.dragging) {
self.visible = player.length > 0;
if (player.length > 0) { if (player.length > 0) {
slider.value = player.position / player.length; self.value = player.position / player.length;
} }
} }
}]], };
connections: [ self
[1000, (s) => s._update(s)], .poll(1000, () => update())
[player, (s) => s._update(s), 'position'], .hook(player, () => update(), 'position')
[player.colors, (s) => { .hook(player.colors, () => {
if (player.colors.value) { if (player.colors.value) {
const c = player.colors.value; const c = player.colors.value;
s.setCss(` self.setCss(`
highlight { background-color: ${c.buttonAccent}; } highlight { background-color: ${c.buttonAccent}; }
slider { background-color: ${c.buttonAccent}; } slider { background-color: ${c.buttonAccent}; }
slider:hover { background-color: ${c.hoverAccent}; } slider:hover { background-color: ${c.hoverAccent}; }
trough { background-color: ${c.buttonText}; } trough { background-color: ${c.buttonText}; }
`); `);
} }
}], })
.on('button-press-event', (s) => {
['button-press-event', (s) => {
s.cursor = 'grabbing'; s.cursor = 'grabbing';
}], })
['button-release-event', (s) => { .on('button-release-event', (s) => {
s.cursor = 'pointer'; s.cursor = 'pointer';
}], });
], },
}); });
const PlayerButton = ({ player, items, onClick, prop }) => EventBox({ const PlayerButton = ({ player, items, onClick, prop }) => EventBox({
@ -239,12 +243,12 @@ const PlayerButton = ({ player, items, onClick, prop }) => EventBox({
} }
}, },
connections: [ setup: (self) => {
[player, (button) => { self
button.child.shown = `${player[prop]}`; .hook(player, () => {
}], self.child.shown = `${player[prop]}`;
})
[player.colors, (button) => { .hook(player.colors, () => {
if (!Mpris.players.find((p) => player === p)) { if (!Mpris.players.find((p) => player === p)) {
return; return;
} }
@ -253,7 +257,7 @@ const PlayerButton = ({ player, items, onClick, prop }) => EventBox({
const c = player.colors.value; const c = player.colors.value;
if (prop === 'playBackStatus') { if (prop === 'playBackStatus') {
if (button._hovered) { if (self._hovered) {
items.forEach((item) => { items.forEach((item) => {
item[1].setCss(` item[1].setCss(`
background-color: ${c.hoverAccent}; background-color: ${c.hoverAccent};
@ -271,19 +275,20 @@ const PlayerButton = ({ player, items, onClick, prop }) => EventBox({
background-color: ${c.buttonAccent}; background-color: ${c.buttonAccent};
color: ${c.buttonText}; color: ${c.buttonText};
min-height: 42px; min-height: 42px;
min-width: 38px;`); min-width: 38px;
`);
}); });
} }
} }
else { else {
button.setCss(` self.setCss(`
* { color: ${c.buttonAccent}; } * { color: ${c.buttonAccent}; }
*:hover { color: ${c.hoverAccent}; } *:hover { color: ${c.hoverAccent}; }
`); `);
} }
} }
}], });
], },
}), }),
}); });

View file

@ -107,8 +107,9 @@ export default () => {
['setup', false], ['setup', false],
], ],
connections: [ setup: (self) => {
[Mpris, (overlay, busName) => { self
.hook(Mpris, (overlay, busName) => {
if (overlay._players.has(busName)) { if (overlay._players.has(busName)) {
return; return;
} }
@ -151,10 +152,9 @@ export default () => {
else if (overlay.includesWidget(previousFirst)) { else if (overlay.includesWidget(previousFirst)) {
overlay.moveToTop(previousFirst); overlay.moveToTop(previousFirst);
} }
}, 'player-added'], }, 'player-added')
.hook(Mpris, (overlay, busName) => {
[Mpris, (overlay, busName) => {
if (!busName || !overlay._players.has(busName)) { if (!busName || !overlay._players.has(busName)) {
return; return;
} }
@ -171,8 +171,8 @@ export default () => {
if (overlay.includesWidget(previousFirst)) { if (overlay.includesWidget(previousFirst)) {
overlay.moveToTop(previousFirst); overlay.moveToTop(previousFirst);
} }
}, 'player-closed'], }, 'player-closed');
], },
}); });
return Box({ return Box({

View file

@ -42,7 +42,7 @@ export default ({
const gesture = Gtk.GestureLongPress.new(widget); const gesture = Gtk.GestureLongPress.new(widget);
widget.connectTo(gesture, () => { widget.hook(gesture, () => {
const pointer = gesture.get_point(null); const pointer = gesture.get_point(null);
const x = pointer[1]; const x = pointer[1];
const y = pointer[2]; const y = pointer[2];

View file

@ -58,9 +58,10 @@ export default ({
transition, transition,
transitionDuration, transitionDuration,
connections: [[App, (rev, currentName, isOpen) => { setup: (self) => {
self.hook(App, (_, currentName, isOpen) => {
if (currentName === name) { if (currentName === name) {
rev.revealChild = isOpen; self.revealChild = isOpen;
if (isOpen) { if (isOpen) {
onOpen(window); onOpen(window);
@ -71,7 +72,8 @@ export default ({
}); });
} }
} }
}]], });
},
child: child || Box(), child: child || Box(),
}), }),

View file

@ -28,8 +28,10 @@ const NotificationList = () => Box({
vexpand: true, vexpand: true,
vpack: 'start', vpack: 'start',
binds: [['visible', HasNotifs]], binds: [['visible', HasNotifs]],
connections: [
[Notifications, (box, id) => { setup: (self) => {
self
.hook(Notifications, (box, id) => {
// Handle cached notifs // Handle cached notifs
if (box.children.length === 0) { if (box.children.length === 0) {
Notifications.notifications.forEach((n) => { Notifications.notifications.forEach((n) => {
@ -40,16 +42,16 @@ const NotificationList = () => Box({
else if (id) { else if (id) {
addNotif(box, Notifications.getNotification(id)); addNotif(box, Notifications.getNotification(id));
} }
}, 'notified'], }, 'notified')
[Notifications, (box, id) => { .hook(Notifications, (box, id) => {
const notif = box.children.find((ch) => ch._id === id); const notif = box.children.find((ch) => ch._id === id);
if (notif?.sensitive) { if (notif?.sensitive) {
notif.slideAway('Right'); notif.slideAway('Right');
} }
}, 'closed'], }, 'closed');
], },
}); });
// Needs to be wrapped to still have onHover when disabled // Needs to be wrapped to still have onHover when disabled
@ -64,11 +66,13 @@ const ClearButton = () => EventBox({
children: [ children: [
Label('Clear '), Label('Clear '),
Icon({ Icon({
connections: [[Notifications, (self) => { setup: (self) => {
self.hook(Notifications, () => {
self.icon = Notifications.notifications.length > 0 ? self.icon = Notifications.notifications.length > 0 ?
'user-trash-full-symbolic' : 'user-trash-full-symbolic' :
'user-trash-symbolic'; 'user-trash-symbolic';
}]], });
},
}), }),
], ],
}), }),

View file

@ -91,10 +91,10 @@ export default ({
widget.add(Box({ widget.add(Box({
css: squeezeLeft, css: squeezeLeft,
connections: [ setup: (self) => {
self
// When dragging // When dragging
[gesture, (self) => { .hook(gesture, () => {
let offset = gesture.get_offset()[1]; let offset = gesture.get_offset()[1];
if (offset === 0) { if (offset === 0) {
@ -125,15 +125,16 @@ export default ({
// Put a threshold on if a click is actually dragging // Put a threshold on if a click is actually dragging
widget._dragging = Math.abs(offset) > SLIDE_MIN_THRESHOLD; widget._dragging = Math.abs(offset) > SLIDE_MIN_THRESHOLD;
widget.cursor = 'grabbing'; widget.cursor = 'grabbing';
}, 'drag-update'], }, 'drag-update')
// On drag end // On drag end
[gesture, (self) => { .hook(gesture, () => {
// Make it slide in on init // Make it slide in on init
if (!widget.ready) { if (!widget.ready) {
// Reverse of slideAway, so it started at squeeze, then we go to slide // Reverse of slideAway, so it started at squeeze, then we go to slide
self.setCss(slideIn === 'Left' ? slideLeft : slideRight); self.setCss(slideIn === 'Left' ?
slideLeft :
slideRight);
timeout(ANIM_DURATION, () => { timeout(ANIM_DURATION, () => {
// Then we go to center // Then we go to center
@ -162,9 +163,8 @@ export default ({
widget.cursor = 'grab'; widget.cursor = 'grab';
widget._dragging = false; widget._dragging = false;
} }
}, 'drag-end'], }, 'drag-end');
},
],
})); }));
return widget; return widget;

View file

@ -10,7 +10,11 @@ import { Notification } from './base.js';
const DELAY = 2000; const DELAY = 2000;
const addPopup = (box, id) => { export default () => Box({
vertical: true,
setup: (self) => {
const addPopup = (id) => {
if (!id) { if (!id) {
return; return;
} }
@ -24,13 +28,13 @@ const addPopup = (box, id) => {
if (NewNotif) { if (NewNotif) {
// Use this instead of add to put it at the top // Use this instead of add to put it at the top
box.pack_end(NewNotif, false, false, 0); self.pack_end(NewNotif, false, false, 0);
box.show_all(); self.show_all();
} }
}; };
const handleDismiss = (box, id, force = false) => { const handleDismiss = (id, force = false) => {
const notif = box.children.find((ch) => ch._id === id); const notif = self.children.find((ch) => ch._id === id);
if (!notif) { if (!notif) {
return; return;
@ -52,14 +56,11 @@ const handleDismiss = (box, id, force = false) => {
} }
}); });
} }
}; };
export default () => Box({ self
vertical: true, .hook(Notifications, (_, id) => addPopup(id), 'notified')
.hook(Notifications, (_, id) => handleDismiss(id), 'dismissed')
connections: [ .hook(Notifications, (_, id) => handleDismiss(id, true), 'closed');
[Notifications, (s, id) => addPopup(s, id), 'notified'], },
[Notifications, (s, id) => handleDismiss(s, id), 'dismissed'],
[Notifications, (s, id) => handleDismiss(s, id, true), 'closed'],
],
}); });

View file

@ -37,7 +37,8 @@ export default (window) => Box({
active: true, active: true,
vpack: 'center', vpack: 'center',
connections: [['toggled', (self) => { setup: (self) => {
self.on('toggled', () => {
self.toggleClassName( self.toggleClassName(
'toggled', 'toggled',
self.get_active(), self.get_active(),
@ -45,7 +46,8 @@ export default (window) => Box({
window.exclusivity = self.get_active() ? window.exclusivity = self.get_active() ?
'exclusive' : 'exclusive' :
'normal'; 'normal';
}]], });
},
child: Label('Exclusive'), child: Label('Exclusive'),
}), }),

View file

@ -86,11 +86,13 @@ const ModKey = (key) => {
self.child.toggleClassName('active', !Mod.value); self.child.toggleClassName('active', !Mod.value);
Mod.value = !Mod.value; Mod.value = !Mod.value;
}, },
connections: [[NormalClick, (self) => { setup: (self) => {
self.hook(NormalClick, () => {
Mod.value = false; Mod.value = false;
self.child.toggleClassName('active', false); self.child.toggleClassName('active', false);
execAsync(`ydotool key ${key.keycode}:0`); execAsync(`ydotool key ${key.keycode}:0`);
}]], });
},
child: Label({ child: Label({
class_name: `mod ${key.label}`, class_name: `mod ${key.label}`,
label: key.label, label: key.label,
@ -114,16 +116,16 @@ const RegularKey = (key) => {
class_name: `normal ${key.label}`, class_name: `normal ${key.label}`,
label: key.label, label: key.label,
connections: [ setup: (self) => {
[Shift, (self) => { self
.hook(Shift, () => {
if (!key.labelShift) { if (!key.labelShift) {
return; return;
} }
self.label = Shift.value ? key.labelShift : key.label; self.label = Shift.value ? key.labelShift : key.label;
}], })
.hook(Caps, () => {
[Caps, (self) => {
if (key.label === 'Caps') { if (key.label === 'Caps') {
self.toggleClassName('active', Caps.value); self.toggleClassName('active', Caps.value);
@ -135,19 +137,20 @@ const RegularKey = (key) => {
} }
if (key.label.match(/[A-Za-z]/)) { if (key.label.match(/[A-Za-z]/)) {
self.label = Caps.value ? key.labelShift : key.label; self.label = Caps.value ?
key.labelShift :
key.label;
} }
}], })
.hook(AltGr, () => {
[AltGr, (self) => {
if (!key.labelAltGr) { if (!key.labelAltGr) {
return; return;
} }
self.toggleClassName('altgr', AltGr.value); self.toggleClassName('altgr', AltGr.value);
self.label = AltGr.value ? key.labelAltGr : key.label; self.label = AltGr.value ? key.labelAltGr : key.label;
}], });
], },
}), }),
}); });
@ -156,7 +159,7 @@ const RegularKey = (key) => {
gesture.delay_factor = 1.0; gesture.delay_factor = 1.0;
// Long press // Long press
widget.connectTo(gesture, () => { widget.hook(gesture, () => {
const pointer = gesture.get_point(null); const pointer = gesture.get_point(null);
const x = pointer[1]; const x = pointer[1];
const y = pointer[2]; const y = pointer[2];
@ -171,7 +174,7 @@ const RegularKey = (key) => {
}, 'pressed'); }, 'pressed');
// OnPrimaryClickRelease // OnPrimaryClickRelease
widget.connectTo(gesture, () => { widget.hook(gesture, () => {
const pointer = gesture.get_point(null); const pointer = gesture.get_point(null);
const x = pointer[1]; const x = pointer[1];
const y = pointer[2]; const y = pointer[2];

View file

@ -16,17 +16,18 @@ export default () => {
visible: false, visible: false,
anchor: ['left', 'bottom', 'right'], anchor: ['left', 'bottom', 'right'],
connections: [ setup: (self) => {
[Tablet, (self, state) => { self
.hook(Tablet, (_, state) => {
self.setVisible(state); self.setVisible(state);
}, 'osk-toggled'], }, 'osk-toggled')
[Tablet, () => { .hook(Tablet, () => {
if (!Tablet.tabletMode && !Tablet.oskState) { if (!Tablet.tabletMode && !Tablet.oskState) {
window.visible = false; window.visible = false;
} }
}, 'mode-toggled'], }, 'mode-toggled');
], },
}); });
window.child = Keyboard(window); window.child = Keyboard(window);

View file

@ -36,7 +36,7 @@ export default ({ stack, icon, info } = {}) => {
connectFunc = () => stack.popup(osd); connectFunc = () => stack.popup(osd);
} }
osd.children[0].children[1].connectTo(info.mod, connectFunc, info.signal); osd.children[0].children[1].hook(info.mod, connectFunc, info.signal);
return osd; return osd;
}; };

View file

@ -33,7 +33,10 @@ let hidden = 0;
export const WorkspaceDrop = (props) => EventBox({ export const WorkspaceDrop = (props) => EventBox({
...props, ...props,
connections: [['drag-data-received', (self, _c, _x, _y, data) => { setup: (self) => {
self.drag_dest_set(Gtk.DestDefaults.ALL, TARGET, Gdk.DragAction.COPY);
self.on('drag-data-received', (_, _c, _x, _y, data) => {
let id = self.get_parent()._id; let id = self.get_parent()._id;
if (id < -1) { if (id < -1) {
@ -51,10 +54,7 @@ export const WorkspaceDrop = (props) => EventBox({
Hyprland.sendMessage('dispatch ' + Hyprland.sendMessage('dispatch ' +
`movetoworkspacesilent ${id},address:${data.get_text()}`) `movetoworkspacesilent ${id},address:${data.get_text()}`)
.catch(print); .catch(print);
}]], });
setup: (self) => {
self.drag_dest_set(Gtk.DestDefaults.ALL, TARGET, Gdk.DragAction.COPY);
}, },
}); });
@ -69,16 +69,16 @@ export const WindowButton = ({ address, mainBox, ...props } = {}) => Button({
Gdk.DragAction.COPY, Gdk.DragAction.COPY,
); );
self.connect('drag-data-get', (_w, _c, data) => { self.on('drag-data-get', (_w, _c, data) => {
data.set_text(address, address.length); data.set_text(address, address.length);
}); });
self.connect('drag-begin', (_, context) => { self.on('drag-begin', (_, context) => {
Gtk.drag_set_icon_surface(context, createSurfaceFromWidget(self)); Gtk.drag_set_icon_surface(context, createSurfaceFromWidget(self));
self.get_parent().revealChild = false; self.get_parent().revealChild = false;
}); });
self.connect('drag-end', () => { self.on('drag-end', () => {
self.get_parent().destroy(); self.get_parent().destroy();
updateClients(mainBox); updateClients(mainBox);

View file

@ -40,13 +40,15 @@ export const Overview = () => {
}), }),
], ],
connections: [[Hyprland, (self) => { setup: (self) => {
self.hook(Hyprland, () => {
if (!App.getWindow('overview').visible) { if (!App.getWindow('overview').visible) {
return; return;
} }
self.update(); self.update();
}]], });
},
properties: [ properties: [
['workspaces'], ['workspaces'],
@ -72,7 +74,8 @@ export const Overview = () => {
}), }),
// TODO: throttle his? // TODO: throttle his?
connections: [['get-child-position', (self, ch) => { setup: (self) => {
self.on('get-child-position', (_, ch) => {
if (ch === mainBox) { if (ch === mainBox) {
self.child.setCss(` self.child.setCss(`
transition: min-height 0.2s ease, min-width 0.2s ease; transition: min-height 0.2s ease, min-width 0.2s ease;
@ -80,7 +83,8 @@ export const Overview = () => {
min-width: ${mainBox.get_allocated_width()}px; min-width: ${mainBox.get_allocated_width()}px;
`); `);
} }
}]], });
},
}); });
widget.getChild = () => mainBox; widget.getChild = () => mainBox;

View file

@ -31,17 +31,17 @@ const Workspace = (id, name, normal = true) => {
transition: 'slide_right', transition: 'slide_right',
transitionDuration: 500, transitionDuration: 500,
connections: normal ? setup: (self) => {
if (normal) {
[[Hyprland, (box) => { self.hook(Hyprland, () => {
const activeId = Hyprland.active.workspace.id; const activeId = Hyprland.active.workspace.id;
const active = activeId === box._id; const active = activeId === self._id;
box.revealChild = Hyprland.getWorkspace(box._id) self.revealChild = Hyprland.getWorkspace(self._id)
?.windows > 0 || active; ?.windows > 0 || active;
}]] : });
}
[], },
child: WorkspaceDrop({ child: WorkspaceDrop({
child: Box({ child: Box({
@ -88,7 +88,8 @@ export const WorkspaceRow = (className, i) => {
transition: 'slide_down', transition: 'slide_down',
hpack: className === 'special' ? '' : 'start', hpack: className === 'special' ? '' : 'start',
connections: [[Hyprland, (rev) => { setup: (self) => {
self.hook(Hyprland, (rev) => {
const minId = i * VARS.WORKSPACE_PER_ROW; const minId = i * VARS.WORKSPACE_PER_ROW;
const activeId = Hyprland.active.workspace.id; const activeId = Hyprland.active.workspace.id;
@ -101,11 +102,13 @@ export const WorkspaceRow = (className, i) => {
}); });
rev.revealChild = rowExists; rev.revealChild = rowExists;
}]], });
},
child: CenterBox({ child: CenterBox({
children: [null, EventBox({ children: [null, EventBox({
connections: [[Hyprland, () => { setup: (self) => {
self.hook(Hyprland, () => {
const maxId = (i + 1) * VARS.WORKSPACE_PER_ROW; const maxId = (i + 1) * VARS.WORKSPACE_PER_ROW;
const activeId = Hyprland.active.workspace.id; const activeId = Hyprland.active.workspace.id;
@ -119,7 +122,8 @@ export const WorkspaceRow = (className, i) => {
}); });
addWorkspace.revealChild = isSpecial || !nextRowExists; addWorkspace.revealChild = isSpecial || !nextRowExists;
}]], });
},
child: Box({ child: Box({
className, className,

View file

@ -5,8 +5,8 @@ import { Box, Icon, Label, ListBox, Overlay, Revealer, Scrollable } from 'resour
import EventBox from '../misc/cursorbox.js'; import EventBox from '../misc/cursorbox.js';
const SCROLL_THRESHOLD_H = 200; const SCROLL_THRESH_H = 200;
const SCROLL_THRESHOLD_N = 7; const SCROLL_THRESH_N = 7;
const BluetoothDevice = (dev) => { const BluetoothDevice = (dev) => {
@ -29,9 +29,11 @@ const BluetoothDevice = (dev) => {
icon: 'object-select-symbolic', icon: 'object-select-symbolic',
hexpand: true, hexpand: true,
hpack: 'end', hpack: 'end',
connections: [[dev, (self) => { setup: (self) => {
self.hook(dev, () => {
self.setCss(`opacity: ${dev.paired ? '1' : '0'};`); self.setCss(`opacity: ${dev.paired ? '1' : '0'};`);
}]], });
},
}), }),
], ],
}); });
@ -95,7 +97,8 @@ export const BluetoothMenu = () => {
hscroll: 'never', hscroll: 'never',
vscroll: 'never', vscroll: 'never',
connections: [['edge-reached', (_, pos) => { setup: (self) => {
self.on('edge-reached', (_, pos) => {
// Manage scroll indicators // Manage scroll indicators
if (pos === 2) { if (pos === 2) {
topArrow.revealChild = false; topArrow.revealChild = false;
@ -105,7 +108,8 @@ export const BluetoothMenu = () => {
topArrow.revealChild = true; topArrow.revealChild = true;
bottomArrow.revealChild = false; bottomArrow.revealChild = false;
} }
}]], });
},
child: ListBox({ child: ListBox({
setup: (self) => { setup: (self) => {
@ -113,9 +117,8 @@ export const BluetoothMenu = () => {
return b.get_children()[0].dev.paired - return b.get_children()[0].dev.paired -
a.get_children()[0].dev.paired; a.get_children()[0].dev.paired;
}); });
},
connections: [[Bluetooth, (box) => { self.hook(Bluetooth, () => {
// Get all devices // Get all devices
const Devices = [].concat( const Devices = [].concat(
Bluetooth.devices, Bluetooth.devices,
@ -127,8 +130,8 @@ export const BluetoothMenu = () => {
if (!DevList.has(dev) && dev.name) { if (!DevList.has(dev) && dev.name) {
DevList.set(dev, BluetoothDevice(dev)); DevList.set(dev, BluetoothDevice(dev));
box.add(DevList.get(dev)); self.add(DevList.get(dev));
box.show_all(); self.show_all();
} }
}); });
@ -147,7 +150,8 @@ export const BluetoothMenu = () => {
DevList.delete(dev); DevList.delete(dev);
} }
else { else {
devWidget.children[0].revealChild = false; devWidget.children[0]
.revealChild = false;
devWidget.toDestroy = true; devWidget.toDestroy = true;
} }
} }
@ -156,13 +160,13 @@ export const BluetoothMenu = () => {
// Start scrolling after a specified height // Start scrolling after a specified height
// is reached by the children // is reached by the children
const height = Math.max( const height = Math.max(
box.get_parent().get_allocated_height(), self.get_parent().get_allocated_height(),
SCROLL_THRESHOLD_H, SCROLL_THRESH_H,
); );
const scroll = box.get_parent().get_parent(); const scroll = self.get_parent().get_parent();
if (box.get_children().length > SCROLL_THRESHOLD_N) { if (self.get_children().length > SCROLL_THRESH_N) {
scroll.vscroll = 'always'; scroll.vscroll = 'always';
scroll.setCss(`min-height: ${height}px;`); scroll.setCss(`min-height: ${height}px;`);
@ -181,10 +185,11 @@ export const BluetoothMenu = () => {
} }
// Trigger sort_func // Trigger sort_func
box.get_children().forEach((ch) => { self.get_children().forEach((ch) => {
ch.changed(); ch.changed();
}); });
}]], });
},
}), }),
}), }),
}), }),

View file

@ -34,24 +34,27 @@ const GridButton = ({
icon = Icon({ icon = Icon({
className: 'grid-label', className: 'grid-label',
icon, icon,
connections: [[Activated, (self) => { setup: (self) => {
self.hook(Activated, () => {
self.setCss(`color: ${Activated.value ? self.setCss(`color: ${Activated.value ?
'rgba(189, 147, 249, 0.8)' : 'rgba(189, 147, 249, 0.8)' :
'unset'};`); 'unset'};`);
}]], });
},
}); });
} }
else { else {
icon = Icon({ icon = Icon({
className: 'grid-label', className: 'grid-label',
connections: [ setup: (self) => {
icon, self
[Activated, (self) => { .hook(...icon)
.hook(Activated, () => {
self.setCss(`color: ${Activated.value ? self.setCss(`color: ${Activated.value ?
'rgba(189, 147, 249, 0.8)' : 'rgba(189, 147, 249, 0.8)' :
'unset'};`); 'unset'};`);
}], });
], },
}); });
} }
@ -61,7 +64,9 @@ const GridButton = ({
justification: 'left', justification: 'left',
truncate: 'end', truncate: 'end',
maxWidthChars: 12, maxWidthChars: 12,
connections: [indicator], setup: (self) => {
self.hook(...indicator);
},
}); });
} }
@ -126,7 +131,8 @@ const GridButton = ({
icon: `${App.configDir }/icons/down-large.svg`, icon: `${App.configDir }/icons/down-large.svg`,
className: 'grid-chev', className: 'grid-chev',
connections: [[Activated, (self) => { setup: (self) => {
self.hook(Activated, () => {
let deg = 270; let deg = 270;
if (Activated.value) { if (Activated.value) {
@ -136,7 +142,8 @@ const GridButton = ({
self.setCss(` self.setCss(`
-gtk-icon-transform: rotate(${deg}deg); -gtk-icon-transform: rotate(${deg}deg);
`); `);
}]], });
},
}), }),
}), }),

View file

@ -7,8 +7,8 @@ import { execAsync } from 'resource:///com/github/Aylur/ags/utils.js';
import EventBox from '../misc/cursorbox.js'; import EventBox from '../misc/cursorbox.js';
const SCROLL_THRESHOLD_H = 200; const SCROLL_THRESH_H = 200;
const SCROLL_THRESHOLD_N = 7; const SCROLL_THRESH_N = 7;
const AccessPoint = (ap) => { const AccessPoint = (ap) => {
@ -22,28 +22,37 @@ const AccessPoint = (ap) => {
hexpand: true, hexpand: true,
children: [ children: [
Icon({ Icon({
connections: [[widget.ap, (self) => { setup: (self) => {
self.hook(widget.ap, () => {
self.icon = widget.ap.value.iconName; self.icon = widget.ap.value.iconName;
}]], });
},
}), }),
Label({ Label({
connections: [[widget.ap, (self) => { setup: (self) => {
self.hook(widget.ap, () => {
self.label = widget.ap.value.ssid || ''; self.label = widget.ap.value.ssid || '';
}]], });
},
}), }),
Icon({ Icon({
icon: 'object-select-symbolic', icon: 'object-select-symbolic',
hexpand: true, hexpand: true,
hpack: 'end', hpack: 'end',
connections: [[Network, (self) => { setup: (self) => {
self.setCss(`opacity: ${ self.hook(Network, () => {
self.setCss(
`opacity: ${
widget.ap.value.ssid === Network.wifi.ssid ? widget.ap.value.ssid === Network.wifi.ssid ?
'1' : '1' :
'0' '0'
};`); };
}]], `,
);
});
},
}), }),
], ],
}); });
@ -109,7 +118,8 @@ export const NetworkMenu = () => {
hscroll: 'never', hscroll: 'never',
vscroll: 'never', vscroll: 'never',
connections: [['edge-reached', (_, pos) => { setup: (self) => {
self.on('edge-reached', (_, pos) => {
// Manage scroll indicators // Manage scroll indicators
if (pos === 2) { if (pos === 2) {
topArrow.revealChild = false; topArrow.revealChild = false;
@ -119,7 +129,8 @@ export const NetworkMenu = () => {
topArrow.revealChild = true; topArrow.revealChild = true;
bottomArrow.revealChild = false; bottomArrow.revealChild = false;
} }
}]], });
},
child: ListBox({ child: ListBox({
setup: (self) => { setup: (self) => {
@ -127,9 +138,8 @@ export const NetworkMenu = () => {
return b.get_children()[0].ap.value.strength - return b.get_children()[0].ap.value.strength -
a.get_children()[0].ap.value.strength; a.get_children()[0].ap.value.strength;
}); });
},
connections: [[Network, (box) => { self.hook(Network, () => {
// Add missing APs // Add missing APs
Network.wifi?.access_points.forEach((ap) => { Network.wifi?.access_points.forEach((ap) => {
if (ap.ssid !== 'Unknown') { if (ap.ssid !== 'Unknown') {
@ -144,8 +154,8 @@ export const NetworkMenu = () => {
else { else {
APList.set(ap.ssid, AccessPoint(ap)); APList.set(ap.ssid, AccessPoint(ap));
box.add(APList.get(ap.ssid)); self.add(APList.get(ap.ssid));
box.show_all(); self.show_all();
} }
} }
}); });
@ -165,7 +175,8 @@ export const NetworkMenu = () => {
APList.delete(ssid); APList.delete(ssid);
} }
else { else {
apWidget.children[0].revealChild = false; apWidget.children[0]
.revealChild = false;
apWidget.toDestroy = true; apWidget.toDestroy = true;
} }
} }
@ -174,13 +185,13 @@ export const NetworkMenu = () => {
// Start scrolling after a specified height // Start scrolling after a specified height
// is reached by the children // is reached by the children
const height = Math.max( const height = Math.max(
box.get_parent().get_allocated_height(), self.get_parent().get_allocated_height(),
SCROLL_THRESHOLD_H, SCROLL_THRESH_H,
); );
const scroll = box.get_parent().get_parent(); const scroll = self.get_parent().get_parent();
if (box.get_children().length > SCROLL_THRESHOLD_N) { if (self.get_children().length > SCROLL_THRESH_N) {
scroll.vscroll = 'always'; scroll.vscroll = 'always';
scroll.setCss(`min-height: ${height}px;`); scroll.setCss(`min-height: ${height}px;`);
@ -199,10 +210,11 @@ export const NetworkMenu = () => {
} }
// Trigger sort_func // Trigger sort_func
box.get_children().forEach((ch) => { self.get_children().forEach((ch) => {
ch.changed(); ch.changed();
}); });
}]], });
},
}), }),
}), }),
}), }),

View file

@ -34,18 +34,20 @@ export default () => Box({
Audio.speaker.volume = value; Audio.speaker.volume = value;
}, },
connections: [ setup: (self) => {
[Audio, (slider) => { self
slider.value = Audio.speaker?.volume; .hook(Audio, () => {
}, 'speaker-changed'], self.value = Audio.speaker?.volume;
}, 'speaker-changed')
['button-press-event', (s) => { .on('button-press-event', () => {
s.cursor = 'grabbing'; self.cursor = 'grabbing';
}], })
['button-release-event', (s) => {
s.cursor = 'pointer'; .on('button-release-event', () => {
}], self.cursor = 'pointer';
], });
},
}), }),
], ],
}), }),
@ -70,18 +72,20 @@ export default () => Box({
Brightness.screen = value; Brightness.screen = value;
}, },
connections: [ setup: (self) => {
[Brightness, (slider) => { self
slider.value = Brightness.screen; .hook(Brightness, () => {
}, 'screen'], self.value = Brightness.screen;
}, 'screen')
['button-press-event', (s) => { .on('button-press-event', () => {
s.cursor = 'grabbing'; self.cursor = 'grabbing';
}], })
['button-release-event', (s) => {
s.cursor = 'pointer'; .on('button-release-event', () => {
}], self.cursor = 'pointer';
], });
},
}), }),
], ],
}), }),

View file

@ -14,9 +14,8 @@ export default (rev) => CenterBox({
self.set_active(Mpris.players.length > 0); self.set_active(Mpris.players.length > 0);
Mpris.disconnect(id); Mpris.disconnect(id);
}); });
},
connections: [['toggled', (self) => { self.on('toggled', () => {
if (self.get_active()) { if (self.get_active()) {
self.get_children()[0] self.get_children()[0]
.setCss('-gtk-icon-transform: rotate(0deg);'); .setCss('-gtk-icon-transform: rotate(0deg);');
@ -27,7 +26,8 @@ export default (rev) => CenterBox({
.setCss('-gtk-icon-transform: rotate(180deg);'); .setCss('-gtk-icon-transform: rotate(180deg);');
rev.revealChild = false; rev.revealChild = false;
} }
}]], });
},
child: Icon({ child: Icon({
icon: `${App.configDir }/icons/down-large.svg`, icon: `${App.configDir }/icons/down-large.svg`,

View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702637287, "lastModified": 1702684413,
"narHash": "sha256-HLXLYcHQfiOvsCF6/X9FY89URAOr/E62tOw8XWgMloU=", "narHash": "sha256-GdAkD8HJxsb3j9lOW7XFuRpG9S7OND/i1GjkNok4mj0=",
"owner": "Aylur", "owner": "Aylur",
"repo": "ags", "repo": "ags",
"rev": "6cfc5ace1077ffbf7f323e1f8c040e17dece6910", "rev": "79d0f0555ba95c00c103aaa8ff3a14b49e2fe24f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -314,11 +314,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702538064, "lastModified": 1702735279,
"narHash": "sha256-At5GwJPu2tzvS9dllhBoZmqK6lkkh/sOp2YefWRlaL8=", "narHash": "sha256-SztEzDOE/6bDNnWWvnRbSHPVrgewLwdSei1sxoZFejM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "0e2e443ff24f9d75925e91b89d1da44b863734af", "rev": "e9b9ecef4295a835ab073814f100498716b05a96",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -334,11 +334,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702564334, "lastModified": 1702781283,
"narHash": "sha256-MwzG4YZhag4CFzM7JQJi+/QINCDZPJhue++TXr3Xxo4=", "narHash": "sha256-uR/vE/EGJwSEzJS40mEYATwybUODgMgH54l73xkjr0k=",
"owner": "horriblename", "owner": "horriblename",
"repo": "hyprgrass", "repo": "hyprgrass",
"rev": "f600c18e0c6672e1b053aa281c8175aef5eafebe", "rev": "ebc604b2e0e1fba8949675bbd09426f8a5374ab0",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -358,11 +358,11 @@
"xdph": "xdph" "xdph": "xdph"
}, },
"locked": { "locked": {
"lastModified": 1702600743, "lastModified": 1702759678,
"narHash": "sha256-gxWffHkvtfarJ3ANJFRO3aohrIgwGVnDpG2WhKfLbf8=", "narHash": "sha256-+UGyDbOEvKewPkDD1tj1M3rcBTkX7UgE4zh8N1Hh2+o=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "36fa33f7ca2f555cc8581a13c5899effed2bf84b", "rev": "9ca0c7d814d6039450ff0341556faa1ce9b37e82",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -426,11 +426,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702598962, "lastModified": 1702771628,
"narHash": "sha256-uh0Tw7og6xswrrQ9PxEFOCLQXcwQHUynO4bL1fkUJO8=", "narHash": "sha256-xU762QNKQZBWlbZ/b1S1a58txXoG+6sIcSCj1TqEn7c=",
"owner": "nix-community", "owner": "nix-community",
"repo": "neovim-nightly-overlay", "repo": "neovim-nightly-overlay",
"rev": "21a2bc2a9f18c49d4c9ba811ab6c6746b8d62580", "rev": "916b055a001b578567dfa4ccb82aaa210e2f3e20",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -449,11 +449,11 @@
}, },
"locked": { "locked": {
"dir": "contrib", "dir": "contrib",
"lastModified": 1702595978, "lastModified": 1702769013,
"narHash": "sha256-PvcPk+f9ENeY5Jq1nvWpkL12KWeVQFhqQ2a8PLNfP/k=", "narHash": "sha256-Kaq//79n61r4e2p5N7g0MDDdUUPOj5+NnUhtLC0k23s=",
"owner": "neovim", "owner": "neovim",
"repo": "neovim", "repo": "neovim",
"rev": "f31f260f0c6449dba4c84071be6bfe91d3cb4993", "rev": "8f08b1efbd096850c04c2e8e2890d993bd4d9f95",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -489,11 +489,11 @@
"treefmt-nix": "treefmt-nix" "treefmt-nix": "treefmt-nix"
}, },
"locked": { "locked": {
"lastModified": 1702254072, "lastModified": 1702743345,
"narHash": "sha256-48qPUGgw5CY3O1M2r6K5g9mJMyxvG1K9GaAb4tXxmSs=", "narHash": "sha256-xvRuGxFJLPbUPrLke4zf9UiqZadeLzV/gSfFTum0K4s=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nix-eval-jobs", "repo": "nix-eval-jobs",
"rev": "843dc25cfe93eb620f8dc8825b1de001e5b33e9f", "rev": "4a1123c42dc9c4c07863a4bfa426f7fcc8f12b90",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -531,11 +531,11 @@
"nixpkgs": "nixpkgs_2" "nixpkgs": "nixpkgs_2"
}, },
"locked": { "locked": {
"lastModified": 1702516441, "lastModified": 1702776069,
"narHash": "sha256-bhC1cqytO99L9i4BZLjaIEgDP4CpuVf+yP9pIFaWHjE=", "narHash": "sha256-NCza/LTcFVu8YMzoo9XqQwzTaYjqb2Q4DMZxG6vWIX8=",
"owner": "fufexan", "owner": "fufexan",
"repo": "nix-gaming", "repo": "nix-gaming",
"rev": "dcd1a7c19691646e41a3328aa7d055ec43443b8d", "rev": "b5bcd1163fff15a3fc9d97e7d148812736212b89",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -719,11 +719,11 @@
"nixpkgs": "nixpkgs_6" "nixpkgs": "nixpkgs_6"
}, },
"locked": { "locked": {
"lastModified": 1702649675, "lastModified": 1702757751,
"narHash": "sha256-sSGEuGpPnXhHWtR8e9XOlKm/OPy2ocfr2vaPDk1n0x4=", "narHash": "sha256-fDmMncKTNVVypMjv4Bv7F66MUdmMC3qZUyC+uVjsLs0=",
"owner": "nix-community", "owner": "nix-community",
"repo": "nixpkgs-wayland", "repo": "nixpkgs-wayland",
"rev": "8248ceefd6f2802d763aa9fc1b8682976ec8cc92", "rev": "13140e9610b7de62b3f3e1e9d17f779c8d9fa21c",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -734,11 +734,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1702029940, "lastModified": 1702539185,
"narHash": "sha256-qM3Du0perpLesh5hr87mVPZ79McMUKIWUH7EQMh2kWo=", "narHash": "sha256-KnIRG5NMdLIpEkZTnN5zovNYc0hhXjAgv6pfd5Z4c7U=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e9ef8a102c555da4f8f417fe5cf5bd539d8a38b7", "rev": "aa9d4729cbc99dabacb50e3994dcefb3ea0f7447",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -782,11 +782,11 @@
}, },
"nixpkgs_5": { "nixpkgs_5": {
"locked": { "locked": {
"lastModified": 1702249933, "lastModified": 1702667777,
"narHash": "sha256-OlqCC8A6OC5n0n4meCklk73V64JcyoJQ+EGa5arhvsI=", "narHash": "sha256-qpgZVpFrOEgW0DimJ24UXeFh63TI9fQFXxc58DPtG8Q=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "0838486e9183ce39398f01b221766e68b50f405c", "rev": "203ecda835bcf69633df7183459283543dd4a874",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -878,11 +878,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1702640491, "lastModified": 1702780981,
"narHash": "sha256-+mKwkPnutEB1adKn51ykH2SbKXh2gcB4YWrIM9do7IU=", "narHash": "sha256-Ct9FHSS6VeFrAyA2/19bL1sq4JIzLfg+0neXvpDwOzY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "476bb9eacb33dace8b614bf35bdc04129faeaae2", "rev": "ddb4fe1f170116376c1c300883b239d4ce45f939",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -1116,11 +1116,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1702212301, "lastModified": 1702461037,
"narHash": "sha256-Rvl8BD7mnHZC1Qz6TxT120UyjsGUEdcsthHbEY+1vnU=", "narHash": "sha256-ssyGxfGHRuuLHuMex+vV6RMOt7nAo07nwufg9L5GkLg=",
"owner": "numtide", "owner": "numtide",
"repo": "treefmt-nix", "repo": "treefmt-nix",
"rev": "afdd5e48a0869b389027307652a658051c0d2f96", "rev": "d06b70e5163a903f19009c3f97770014787a080f",
"type": "github" "type": "github"
}, },
"original": { "original": {