feat(ags): use gtk4 lockscreen

This commit is contained in:
matt1432 2025-03-08 17:46:00 -05:00
parent 3a55413cae
commit 44c0ac6f33
11 changed files with 18 additions and 317 deletions
modules/ags/gtk4

View file

@ -1,17 +1,8 @@
import { App } from 'astal/gtk4';
import { programArgs } from 'system';
import style from './style.scss';
// import Bar from './widgets/bar';
import Lockscreen from './widgets/lockscreen';
import lock from './configurations/lock';
App.start({
css: style,
instanceName: 'gtk4',
main() {
// Bar();
Lockscreen();
},
});
switch (programArgs[0]) {
case 'lock': lock(); break;
}