feat(agsV2): separate configs using async imports
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
07474f1209
commit
2082a2aeb4
7 changed files with 292 additions and 290 deletions
|
@ -1,89 +1,4 @@
|
||||||
import { execAsync } from 'astal';
|
|
||||||
import { App } from 'astal/gtk3';
|
|
||||||
|
|
||||||
import GLib from 'gi://GLib';
|
import GLib from 'gi://GLib';
|
||||||
|
|
||||||
import style from './style/main.scss';
|
|
||||||
|
|
||||||
import AppLauncher from './widgets/applauncher/main';
|
(await import(`./configurations/${GLib.getenv('CONF')}.ts`)).default();
|
||||||
import Bar from './widgets/bar/wim';
|
|
||||||
import BgFade from './widgets/bg-fade/main';
|
|
||||||
import Calendar from './widgets/date/main';
|
|
||||||
import Clipboard from './widgets/clipboard/main';
|
|
||||||
import Corners from './widgets/corners/main';
|
|
||||||
import IconBrowser from './widgets/icon-browser/main';
|
|
||||||
import { NotifPopups, NotifCenter } from './widgets/notifs/main';
|
|
||||||
import OSD from './widgets/osd/main';
|
|
||||||
import PowerMenu from './widgets/powermenu/main';
|
|
||||||
import Screenshot from './widgets/screenshot/main';
|
|
||||||
|
|
||||||
import { closeAll as closeAllFunc } from './lib';
|
|
||||||
import BrightnessService from './services/brightness';
|
|
||||||
import MonitorClicks from './services/monitor-clicks';
|
|
||||||
|
|
||||||
import Lockscreen from './widgets/lockscreen/main';
|
|
||||||
|
|
||||||
declare global {
|
|
||||||
function closeAll(): void;
|
|
||||||
// eslint-disable-next-line
|
|
||||||
var Brightness: typeof BrightnessService;
|
|
||||||
}
|
|
||||||
globalThis.closeAll = closeAllFunc;
|
|
||||||
globalThis.Brightness = BrightnessService;
|
|
||||||
|
|
||||||
|
|
||||||
const CONF = GLib.getenv('CONF');
|
|
||||||
|
|
||||||
switch (CONF) {
|
|
||||||
case 'lock': {
|
|
||||||
App.start({
|
|
||||||
css: style,
|
|
||||||
instanceName: CONF,
|
|
||||||
|
|
||||||
main: () => {
|
|
||||||
Lockscreen();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
case 'wim': {
|
|
||||||
App.start({
|
|
||||||
css: style,
|
|
||||||
|
|
||||||
requestHandler(js, res) {
|
|
||||||
App.eval(js).then(res).catch(res);
|
|
||||||
},
|
|
||||||
|
|
||||||
main: () => {
|
|
||||||
execAsync('hyprpaper').catch(print);
|
|
||||||
|
|
||||||
AppLauncher();
|
|
||||||
Bar();
|
|
||||||
BgFade();
|
|
||||||
Calendar();
|
|
||||||
Clipboard();
|
|
||||||
Corners();
|
|
||||||
IconBrowser();
|
|
||||||
NotifPopups();
|
|
||||||
NotifCenter();
|
|
||||||
OSD();
|
|
||||||
PowerMenu();
|
|
||||||
Screenshot();
|
|
||||||
|
|
||||||
Brightness.initService({
|
|
||||||
kbd: 'tpacpi::kbd_backlight',
|
|
||||||
caps: 'input1::capslock',
|
|
||||||
});
|
|
||||||
new MonitorClicks();
|
|
||||||
|
|
||||||
setTimeout(() => {
|
|
||||||
App.get_window('win-applauncher')?.set_visible(true);
|
|
||||||
}, 3 * 1000);
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
17
nixosModules/ags-v2/config/configurations/lock.ts
Normal file
17
nixosModules/ags-v2/config/configurations/lock.ts
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
export default async() => {
|
||||||
|
const { App } = await import('astal/gtk3');
|
||||||
|
|
||||||
|
const Lockscreen = (await import('../widgets/lockscreen/main')).default;
|
||||||
|
|
||||||
|
const style = (await import('../style/lock.scss')).default;
|
||||||
|
|
||||||
|
|
||||||
|
App.start({
|
||||||
|
css: style,
|
||||||
|
instanceName: 'lock',
|
||||||
|
|
||||||
|
main: () => {
|
||||||
|
Lockscreen();
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
61
nixosModules/ags-v2/config/configurations/wim.ts
Normal file
61
nixosModules/ags-v2/config/configurations/wim.ts
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
export default async() => {
|
||||||
|
const { execAsync } = await import('astal');
|
||||||
|
const { App } = await import('astal/gtk3');
|
||||||
|
|
||||||
|
const style = (await import('../style/main.scss')).default;
|
||||||
|
|
||||||
|
const AppLauncher = (await import('../widgets/applauncher/main')).default;
|
||||||
|
const Bar = (await import('../widgets/bar/wim')).default;
|
||||||
|
const BgFade = (await import('../widgets/bg-fade/main')).default;
|
||||||
|
const Calendar = (await import('../widgets/date/main')).default;
|
||||||
|
const Clipboard = (await import('../widgets/clipboard/main')).default;
|
||||||
|
const Corners = (await import('../widgets/corners/main')).default;
|
||||||
|
const IconBrowser = (await import('../widgets/icon-browser/main')).default;
|
||||||
|
const { NotifPopups, NotifCenter } = await import('../widgets/notifs/main');
|
||||||
|
const OSD = (await import('../widgets/osd/main')).default;
|
||||||
|
const PowerMenu = (await import('../widgets/powermenu/main')).default;
|
||||||
|
const Screenshot = (await import('../widgets/screenshot/main')).default;
|
||||||
|
|
||||||
|
const { closeAll } = await import('../lib');
|
||||||
|
const Brightness = (await import('../services/brightness')).default;
|
||||||
|
const MonitorClicks = (await import('../services/monitor-clicks')).default;
|
||||||
|
|
||||||
|
globalThis.closeAll = closeAll;
|
||||||
|
globalThis.Brightness = Brightness;
|
||||||
|
|
||||||
|
|
||||||
|
App.start({
|
||||||
|
css: style,
|
||||||
|
|
||||||
|
requestHandler(js, res) {
|
||||||
|
App.eval(js).then(res).catch(res);
|
||||||
|
},
|
||||||
|
|
||||||
|
main: () => {
|
||||||
|
execAsync('hyprpaper').catch(print);
|
||||||
|
|
||||||
|
AppLauncher();
|
||||||
|
Bar();
|
||||||
|
BgFade();
|
||||||
|
Calendar();
|
||||||
|
Clipboard();
|
||||||
|
Corners();
|
||||||
|
IconBrowser();
|
||||||
|
NotifPopups();
|
||||||
|
NotifCenter();
|
||||||
|
OSD();
|
||||||
|
PowerMenu();
|
||||||
|
Screenshot();
|
||||||
|
|
||||||
|
Brightness.initService({
|
||||||
|
kbd: 'tpacpi::kbd_backlight',
|
||||||
|
caps: 'input1::capslock',
|
||||||
|
});
|
||||||
|
new MonitorClicks();
|
||||||
|
|
||||||
|
setTimeout(() => {
|
||||||
|
App.get_window('win-applauncher')?.set_visible(true);
|
||||||
|
}, 3 * 1000);
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
7
nixosModules/ags-v2/config/env.d.ts
vendored
7
nixosModules/ags-v2/config/env.d.ts
vendored
|
@ -1,6 +1,11 @@
|
||||||
/* eslint-disable-next-line @typescript-eslint/no-unused-vars */
|
/* eslint-disable @typescript-eslint/no-unused-vars, no-var */
|
||||||
|
|
||||||
const SRC: string;
|
const SRC: string;
|
||||||
|
|
||||||
|
var Brightness: import('./services/brightness').default;
|
||||||
|
|
||||||
|
function closeAll(): void;
|
||||||
|
|
||||||
declare module 'inline:*' {
|
declare module 'inline:*' {
|
||||||
const content: string;
|
const content: string;
|
||||||
|
|
||||||
|
|
3
nixosModules/ags-v2/config/style/lock.scss
Normal file
3
nixosModules/ags-v2/config/style/lock.scss
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
@use 'common';
|
||||||
|
|
||||||
|
@use '../widgets/lockscreen';
|
|
@ -5,7 +5,6 @@
|
||||||
@use '../widgets/clipboard';
|
@use '../widgets/clipboard';
|
||||||
@use '../widgets/date';
|
@use '../widgets/date';
|
||||||
@use '../widgets/icon-browser';
|
@use '../widgets/icon-browser';
|
||||||
@use '../widgets/lockscreen';
|
|
||||||
@use '../widgets/misc';
|
@use '../widgets/misc';
|
||||||
@use '../widgets/notifs';
|
@use '../widgets/notifs';
|
||||||
@use '../widgets/osd';
|
@use '../widgets/osd';
|
||||||
|
|
|
@ -8,30 +8,28 @@ import Lock from 'gi://GtkSessionLock';
|
||||||
import Separator from '../misc/separator';
|
import Separator from '../misc/separator';
|
||||||
import { get_hyprland_monitor_desc } from '../../lib';
|
import { get_hyprland_monitor_desc } from '../../lib';
|
||||||
|
|
||||||
declare global {
|
|
||||||
function authFinger(): void;
|
|
||||||
}
|
|
||||||
|
|
||||||
// This file is generated by Nix
|
// This file is generated by Nix
|
||||||
import Vars from './vars';
|
import Vars from './vars';
|
||||||
|
|
||||||
|
/* Types */
|
||||||
|
declare global {
|
||||||
|
function authFinger(): void;
|
||||||
|
}
|
||||||
|
@register()
|
||||||
|
class BlurredBox extends Widget.Box {
|
||||||
|
geometry = {} as { w: number, h: number };
|
||||||
|
}
|
||||||
|
|
||||||
export default () => {
|
|
||||||
const lock = Lock.prepare_lock();
|
|
||||||
const windows = new Map<Gdk.Monitor, Gtk.Window>();
|
|
||||||
|
|
||||||
@register()
|
const windows = new Map<Gdk.Monitor, Gtk.Window>();
|
||||||
class BlurredBox extends Widget.Box {
|
const blurBGs: BlurredBox[] = [];
|
||||||
geometry = {} as { w: number, h: number };
|
|
||||||
}
|
|
||||||
const blurBGs: BlurredBox[] = [];
|
|
||||||
|
|
||||||
const transition_duration = 1000;
|
const transition_duration = 1000;
|
||||||
const WINDOW_MARGINS = -2;
|
const WINDOW_MARGINS = -2;
|
||||||
const ENTRY_SPACING = 20;
|
const ENTRY_SPACING = 20;
|
||||||
const CLOCK_SPACING = 60;
|
const CLOCK_SPACING = 60;
|
||||||
|
|
||||||
const bgCSS = ({ w = 1, h = 1 } = {}) => `
|
const bgCSS = ({ w = 1, h = 1 } = {}) => `
|
||||||
border: 2px solid rgba(189, 147, 249, 0.8);
|
border: 2px solid rgba(189, 147, 249, 0.8);
|
||||||
background: rgba(0, 0, 0, 0.2);
|
background: rgba(0, 0, 0, 0.2);
|
||||||
min-height: ${h}px;
|
min-height: ${h}px;
|
||||||
|
@ -40,201 +38,205 @@ export default () => {
|
||||||
min-width ${transition_duration / 2}ms;
|
min-width ${transition_duration / 2}ms;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const unlock = () => {
|
const lock = Lock.prepare_lock();
|
||||||
blurBGs.forEach((b) => {
|
|
||||||
|
const unlock = () => {
|
||||||
|
blurBGs.forEach((b) => {
|
||||||
|
b.css = bgCSS({
|
||||||
|
w: b.geometry.w,
|
||||||
|
h: 1,
|
||||||
|
});
|
||||||
|
|
||||||
|
timeout(transition_duration / 2, () => {
|
||||||
b.css = bgCSS({
|
b.css = bgCSS({
|
||||||
w: b.geometry.w,
|
w: 1,
|
||||||
h: 1,
|
h: 1,
|
||||||
});
|
});
|
||||||
|
|
||||||
timeout(transition_duration / 2, () => {
|
|
||||||
b.css = bgCSS({
|
|
||||||
w: 1,
|
|
||||||
h: 1,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
timeout(transition_duration, () => {
|
});
|
||||||
lock.unlock_and_destroy();
|
timeout(transition_duration, () => {
|
||||||
Gdk.Display.get_default()?.sync();
|
lock.unlock_and_destroy();
|
||||||
App.quit();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const Clock = () => {
|
|
||||||
const time = Variable<string>('').poll(1000, () => {
|
|
||||||
return (new Date().toLocaleString([], {
|
|
||||||
hour: 'numeric',
|
|
||||||
minute: 'numeric',
|
|
||||||
hour12: true,
|
|
||||||
}) ?? '')
|
|
||||||
.replace('a.m.', 'AM')
|
|
||||||
.replace('p.m.', 'PM');
|
|
||||||
});
|
|
||||||
|
|
||||||
return (
|
|
||||||
<label
|
|
||||||
className="lock-clock"
|
|
||||||
label={bind(time)}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
};
|
|
||||||
|
|
||||||
const PasswordPrompt = (monitor: Gdk.Monitor, visible: boolean) => {
|
|
||||||
const rev = new BlurredBox({ css: bgCSS() });
|
|
||||||
|
|
||||||
idle(() => {
|
|
||||||
rev.geometry = {
|
|
||||||
w: monitor.geometry.width,
|
|
||||||
h: monitor.geometry.height,
|
|
||||||
};
|
|
||||||
|
|
||||||
rev.css = bgCSS({
|
|
||||||
w: rev.geometry.w,
|
|
||||||
h: 1,
|
|
||||||
});
|
|
||||||
|
|
||||||
timeout(transition_duration / 2, () => {
|
|
||||||
rev.css = bgCSS({
|
|
||||||
w: rev.geometry.w,
|
|
||||||
h: rev.geometry.h,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
blurBGs.push(rev);
|
|
||||||
|
|
||||||
<window
|
|
||||||
name={`blur-bg-${monitor.get_model()}`}
|
|
||||||
namespace={`blur-bg-${monitor.get_model()}`}
|
|
||||||
gdkmonitor={monitor}
|
|
||||||
layer={Astal.Layer.OVERLAY}
|
|
||||||
anchor={
|
|
||||||
Astal.WindowAnchor.TOP |
|
|
||||||
Astal.WindowAnchor.LEFT |
|
|
||||||
Astal.WindowAnchor.RIGHT |
|
|
||||||
Astal.WindowAnchor.BOTTOM
|
|
||||||
}
|
|
||||||
margin={WINDOW_MARGINS}
|
|
||||||
exclusivity={Astal.Exclusivity.IGNORE}
|
|
||||||
>
|
|
||||||
<box
|
|
||||||
halign={Gtk.Align.CENTER}
|
|
||||||
valign={Gtk.Align.CENTER}
|
|
||||||
>
|
|
||||||
{rev}
|
|
||||||
</box>
|
|
||||||
</window>;
|
|
||||||
|
|
||||||
const label = <label label="Enter password:" /> as Widget.Label;
|
|
||||||
|
|
||||||
return new Gtk.Window({
|
|
||||||
child: visible ?
|
|
||||||
(
|
|
||||||
<box
|
|
||||||
vertical
|
|
||||||
halign={Gtk.Align.CENTER}
|
|
||||||
valign={Gtk.Align.CENTER}
|
|
||||||
spacing={16}
|
|
||||||
>
|
|
||||||
<Clock />
|
|
||||||
|
|
||||||
<Separator size={CLOCK_SPACING} vertical />
|
|
||||||
|
|
||||||
<box
|
|
||||||
halign={Gtk.Align.CENTER}
|
|
||||||
className="avatar"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<box
|
|
||||||
className="entry-box"
|
|
||||||
vertical
|
|
||||||
>
|
|
||||||
{label}
|
|
||||||
|
|
||||||
<Separator size={ENTRY_SPACING} vertical />
|
|
||||||
|
|
||||||
<entry
|
|
||||||
halign={Gtk.Align.CENTER}
|
|
||||||
xalign={0.5}
|
|
||||||
visibility={false}
|
|
||||||
placeholder_text="password"
|
|
||||||
|
|
||||||
onRealize={(self) => self.grab_focus()}
|
|
||||||
|
|
||||||
onActivate={(self) => {
|
|
||||||
self.sensitive = false;
|
|
||||||
|
|
||||||
AstalAuth.Pam.authenticate(self.text ?? '', (_, task) => {
|
|
||||||
try {
|
|
||||||
AstalAuth.Pam.authenticate_finish(task);
|
|
||||||
unlock();
|
|
||||||
}
|
|
||||||
catch (e) {
|
|
||||||
self.text = '';
|
|
||||||
label.label = (e as Error).message;
|
|
||||||
self.sensitive = true;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
</box>
|
|
||||||
</box>
|
|
||||||
) :
|
|
||||||
<box />,
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const createWindow = (monitor: Gdk.Monitor) => {
|
|
||||||
const hyprDesc = get_hyprland_monitor_desc(monitor);
|
|
||||||
const entryVisible = Vars.mainMonitor === hyprDesc || Vars.dupeLockscreen;
|
|
||||||
const win = PasswordPrompt(monitor, entryVisible);
|
|
||||||
|
|
||||||
windows.set(monitor, win);
|
|
||||||
};
|
|
||||||
|
|
||||||
const lock_screen = () => {
|
|
||||||
const display = Gdk.Display.get_default();
|
|
||||||
|
|
||||||
for (let m = 0; m < (display?.get_n_monitors() ?? 0); m++) {
|
|
||||||
const monitor = display?.get_monitor(m);
|
|
||||||
|
|
||||||
if (monitor) {
|
|
||||||
createWindow(monitor);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
display?.connect('monitor-added', (_, monitor) => {
|
|
||||||
createWindow(monitor);
|
|
||||||
});
|
|
||||||
lock.lock_lock();
|
|
||||||
windows.forEach((win, monitor) => {
|
|
||||||
lock.new_surface(win, monitor);
|
|
||||||
win.show();
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
const on_finished = () => {
|
|
||||||
lock.destroy();
|
|
||||||
Gdk.Display.get_default()?.sync();
|
Gdk.Display.get_default()?.sync();
|
||||||
App.quit();
|
App.quit();
|
||||||
};
|
});
|
||||||
|
};
|
||||||
|
|
||||||
lock.connect('finished', on_finished);
|
const Clock = () => {
|
||||||
|
const time = Variable<string>('').poll(1000, () => {
|
||||||
|
return (new Date().toLocaleString([], {
|
||||||
|
hour: 'numeric',
|
||||||
|
minute: 'numeric',
|
||||||
|
hour12: true,
|
||||||
|
}) ?? '')
|
||||||
|
.replace('a.m.', 'AM')
|
||||||
|
.replace('p.m.', 'PM');
|
||||||
|
});
|
||||||
|
|
||||||
if (Vars.hasFprintd) {
|
return (
|
||||||
globalThis.authFinger = () => AstalAuth.Pam.authenticate('', (_, task) => {
|
<label
|
||||||
try {
|
className="lock-clock"
|
||||||
AstalAuth.Pam.authenticate_finish(task);
|
label={bind(time)}
|
||||||
unlock();
|
/>
|
||||||
}
|
);
|
||||||
catch (e) {
|
};
|
||||||
console.error((e as Error).message);
|
|
||||||
}
|
const PasswordPrompt = (monitor: Gdk.Monitor, visible: boolean) => {
|
||||||
|
const rev = new BlurredBox({ css: bgCSS() });
|
||||||
|
|
||||||
|
idle(() => {
|
||||||
|
rev.geometry = {
|
||||||
|
w: monitor.geometry.width,
|
||||||
|
h: monitor.geometry.height,
|
||||||
|
};
|
||||||
|
|
||||||
|
rev.css = bgCSS({
|
||||||
|
w: rev.geometry.w,
|
||||||
|
h: 1,
|
||||||
});
|
});
|
||||||
globalThis.authFinger();
|
|
||||||
|
timeout(transition_duration / 2, () => {
|
||||||
|
rev.css = bgCSS({
|
||||||
|
w: rev.geometry.w,
|
||||||
|
h: rev.geometry.h,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
blurBGs.push(rev);
|
||||||
|
|
||||||
|
<window
|
||||||
|
name={`blur-bg-${monitor.get_model()}`}
|
||||||
|
namespace={`blur-bg-${monitor.get_model()}`}
|
||||||
|
gdkmonitor={monitor}
|
||||||
|
layer={Astal.Layer.OVERLAY}
|
||||||
|
anchor={
|
||||||
|
Astal.WindowAnchor.TOP |
|
||||||
|
Astal.WindowAnchor.LEFT |
|
||||||
|
Astal.WindowAnchor.RIGHT |
|
||||||
|
Astal.WindowAnchor.BOTTOM
|
||||||
|
}
|
||||||
|
margin={WINDOW_MARGINS}
|
||||||
|
exclusivity={Astal.Exclusivity.IGNORE}
|
||||||
|
>
|
||||||
|
<box
|
||||||
|
halign={Gtk.Align.CENTER}
|
||||||
|
valign={Gtk.Align.CENTER}
|
||||||
|
>
|
||||||
|
{rev}
|
||||||
|
</box>
|
||||||
|
</window>;
|
||||||
|
|
||||||
|
const label = <label label="Enter password:" /> as Widget.Label;
|
||||||
|
|
||||||
|
return new Gtk.Window({
|
||||||
|
child: visible ?
|
||||||
|
(
|
||||||
|
<box
|
||||||
|
vertical
|
||||||
|
halign={Gtk.Align.CENTER}
|
||||||
|
valign={Gtk.Align.CENTER}
|
||||||
|
spacing={16}
|
||||||
|
>
|
||||||
|
<Clock />
|
||||||
|
|
||||||
|
<Separator size={CLOCK_SPACING} vertical />
|
||||||
|
|
||||||
|
<box
|
||||||
|
halign={Gtk.Align.CENTER}
|
||||||
|
className="avatar"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<box
|
||||||
|
className="entry-box"
|
||||||
|
vertical
|
||||||
|
>
|
||||||
|
{label}
|
||||||
|
|
||||||
|
<Separator size={ENTRY_SPACING} vertical />
|
||||||
|
|
||||||
|
<entry
|
||||||
|
halign={Gtk.Align.CENTER}
|
||||||
|
xalign={0.5}
|
||||||
|
visibility={false}
|
||||||
|
placeholder_text="password"
|
||||||
|
|
||||||
|
onRealize={(self) => self.grab_focus()}
|
||||||
|
|
||||||
|
onActivate={(self) => {
|
||||||
|
self.sensitive = false;
|
||||||
|
|
||||||
|
AstalAuth.Pam.authenticate(self.text ?? '', (_, task) => {
|
||||||
|
try {
|
||||||
|
AstalAuth.Pam.authenticate_finish(task);
|
||||||
|
unlock();
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
self.text = '';
|
||||||
|
label.label = (e as Error).message;
|
||||||
|
self.sensitive = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</box>
|
||||||
|
</box>
|
||||||
|
) :
|
||||||
|
<box />,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const createWindow = (monitor: Gdk.Monitor) => {
|
||||||
|
const hyprDesc = get_hyprland_monitor_desc(monitor);
|
||||||
|
const entryVisible = Vars.mainMonitor === hyprDesc || Vars.dupeLockscreen;
|
||||||
|
const win = PasswordPrompt(monitor, entryVisible);
|
||||||
|
|
||||||
|
windows.set(monitor, win);
|
||||||
|
};
|
||||||
|
|
||||||
|
const lock_screen = () => {
|
||||||
|
const display = Gdk.Display.get_default();
|
||||||
|
|
||||||
|
for (let m = 0; m < (display?.get_n_monitors() ?? 0); m++) {
|
||||||
|
const monitor = display?.get_monitor(m);
|
||||||
|
|
||||||
|
if (monitor) {
|
||||||
|
createWindow(monitor);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
display?.connect('monitor-added', (_, monitor) => {
|
||||||
|
createWindow(monitor);
|
||||||
|
});
|
||||||
|
|
||||||
|
lock.lock_lock();
|
||||||
|
|
||||||
|
windows.forEach((win, monitor) => {
|
||||||
|
lock.new_surface(win, monitor);
|
||||||
|
win.show();
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const on_finished = () => {
|
||||||
|
lock.destroy();
|
||||||
|
Gdk.Display.get_default()?.sync();
|
||||||
|
App.quit();
|
||||||
|
};
|
||||||
|
|
||||||
|
lock.connect('finished', on_finished);
|
||||||
|
|
||||||
|
if (Vars.hasFprintd) {
|
||||||
|
globalThis.authFinger = () => AstalAuth.Pam.authenticate('', (_, task) => {
|
||||||
|
try {
|
||||||
|
AstalAuth.Pam.authenticate_finish(task);
|
||||||
|
unlock();
|
||||||
|
}
|
||||||
|
catch (e) {
|
||||||
|
console.error((e as Error).message);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
globalThis.authFinger();
|
||||||
|
}
|
||||||
|
|
||||||
|
export default () => {
|
||||||
lock_screen();
|
lock_screen();
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue