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
Raw Normal View History

2023-10-15 00:16:19 +01:00
const {
Label,
Window
} = ags.Widget;
export default () => Window({
2023-10-12 20:52:06 +01:00
name: `volume-osd`,
className: `osd`,
monitor: null,
focusable: false,
2023-10-15 00:16:19 +01:00
anchor: ['center'],
2023-10-12 20:52:06 +01:00
popup: true,
2023-10-15 00:16:19 +01:00
child: Label('hello world'),
})