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/js/volume_osd/volosd.js

15 lines
241 B
JavaScript

const {
Label,
Window
} = ags.Widget;
export default () => Window({
name: `volume-osd`,
className: `osd`,
monitor: null,
focusable: false,
anchor: ['center'],
popup: true,
child: Label('hello world'),
})