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

17 lines
335 B
JavaScript
Raw Normal View History

2023-10-12 20:52:06 +01:00
import Panel from './js/panel/panel.js';
import VolumeOSD from './js/volume_osd/volosd.js';
2023-09-24 01:42:00 +01:00
const scss = ags.App.configDir + '/style.scss';
const css = '/tmp/style-ags.css';
ags.Utils.exec(`sassc ${scss} ${css}`);
export default {
2023-09-25 14:30:25 +01:00
style: css,
windows: [
2023-10-12 20:52:06 +01:00
Panel(0),
Panel(1),
// VolumeOSD(),
2023-09-25 14:30:25 +01:00
],
2023-09-24 01:42:00 +01:00
};