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

import Panel from './js/panel/panel.js';
import VolumeOSD from './js/volume_osd/volosd.js';
const scss = ags.App.configDir + '/style.scss';
const css = '/tmp/style-ags.css';
ags.Utils.exec(`sassc ${scss} ${css}`);
export default {
style: css,
windows: [
Panel(0),
Panel(1),
// VolumeOSD(),
],
};