This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/ags/ags-config/config.js

23 lines
576 B
JavaScript
Raw Normal View History

2023-10-15 00:16:19 +01:00
import App from 'resource:///com/github/Aylur/ags/app.js'
import { exec } from 'resource://com/github/Aylur/ags/utils.js'
2023-10-12 20:52:06 +01:00
import Panel from './js/panel/panel.js';
2023-10-18 17:33:03 +01:00
import { NotificationCenter, NotificationsPopupWindow } from './js/notifications/config.js';
2023-10-15 00:16:19 +01:00
import {
forMonitors
}
from './js/utils.js';
2023-09-24 01:42:00 +01:00
2023-10-15 00:16:19 +01:00
const scss = App.configDir + '/style.scss';
2023-09-24 01:42:00 +01:00
const css = '/tmp/style-ags.css';
2023-10-15 00:16:19 +01:00
exec(`sassc ${scss} ${css}`);
2023-09-24 01:42:00 +01:00
export default {
2023-09-25 14:30:25 +01:00
style: css,
windows: [
2023-10-15 00:16:19 +01:00
forMonitors(Panel),
2023-10-18 17:33:03 +01:00
NotificationsPopupWindow(),
NotificationCenter(),
2023-10-15 00:16:19 +01:00
].flat(2),
2023-09-24 01:42:00 +01:00
};