feat(ags4): implement lockscreen

This commit is contained in:
matt1432 2025-01-25 02:28:34 -05:00
parent 8bd0b732e7
commit 557e4c7a52
32 changed files with 281 additions and 12 deletions
modules/ags/gtk4

View file

@ -2,7 +2,8 @@ import { App } from 'astal/gtk4';
import style from './style.scss';
import Bar from './widget/bar';
// import Bar from './widgets/bar';
import Lockscreen from './widgets/lockscreen';
App.start({
@ -10,6 +11,7 @@ App.start({
instanceName: 'gtk4',
main() {
Bar();
// Bar();
Lockscreen();
},
});