nixos-configs/modules/ags/config/configurations/greeter.ts

19 lines
342 B
TypeScript
Raw Permalink Normal View History

import { subprocess } from 'astal';
import { App } from 'astal/gtk3';
2024-11-11 20:33:44 -05:00
import Greeter from '../widgets/greeter';
2024-11-11 20:33:44 -05:00
import style from '../style/greeter.scss';
2024-11-11 20:33:44 -05:00
export default () => {
2024-11-11 20:33:44 -05:00
App.start({
css: style,
instanceName: 'greeter',
main: () => {
Greeter(subprocess('hyprpaper'));
2024-11-11 20:33:44 -05:00
},
});
};