import { Gtk } from "astal/gtk4"; import Power from "./modules/Power"; import Audio from "./modules/Audio/Audio"; import Bluetooth from "./modules/Bluetooth/Bluetooth"; import Brightness from "./modules/Brightness/Brightness"; import Player from "./modules/Player/Player"; import { BatteryBox } from "./modules/Battery"; const QuickActions = () => { const popover = new Gtk.Overlay( { cssClasses: [ 'quick-actions-wrapper' ] } ); popover.set_child(renderQuickActions()); return popover; }; const renderQuickActions = () => { return ( ); }; // TODO: Expose additional functions to be usable through CLI export default { QuickActions, };