@@ -1,18 +1,21 @@
|
||||
import { App, Astal, Gtk, Gdk } from "astal/gtk3";
|
||||
import { Astal, Gtk } from "ags/gtk3";
|
||||
import app from "ags/gtk3/app";
|
||||
import Gdk from "gi://Gdk";
|
||||
import Systray from "./components/Tray";
|
||||
import Hidden from "./components/Hidden";
|
||||
import Battery from "./components/Battery";
|
||||
|
||||
export default (monitor: Gdk.Monitor) => (
|
||||
<window
|
||||
className="root"
|
||||
visible
|
||||
class="root"
|
||||
gdkmonitor={monitor}
|
||||
exclusivity={Astal.Exclusivity.IGNORE}
|
||||
anchor={Astal.WindowAnchor.TOP | Astal.WindowAnchor.RIGHT}
|
||||
application={App}
|
||||
application={app}
|
||||
>
|
||||
<Hidden>
|
||||
<box className="widgets" hexpand halign={Gtk.Align.END}>
|
||||
<box class="widgets" hexpand halign={Gtk.Align.END}>
|
||||
<Systray />
|
||||
<Battery />
|
||||
</box>
|
||||
|
Reference in New Issue
Block a user