feat(ags): add animations between DM and DE

This commit is contained in:
matt1432 2024-11-20 00:54:02 -05:00
parent ef23df4bb2
commit 44b73e7cae
5 changed files with 34 additions and 10 deletions
nixosModules/ags/config/configurations

View file

@ -1,4 +1,4 @@
import { execAsync } from 'astal';
import { subprocess } from 'astal';
import { App } from 'astal/gtk3';
import Greeter from '../widgets/greeter/main';
@ -12,9 +12,7 @@ export default () => {
instanceName: 'greeter',
main: () => {
execAsync('hyprpaper').catch(() => { /**/ });
Greeter();
Greeter(subprocess('hyprpaper'));
},
});
};