From 9963f169766c31f2a8b8844c588285e6c58a4ae8 Mon Sep 17 00:00:00 2001
From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>
Date: Wed, 26 Mar 2025 13:10:48 +1100
Subject: config: show sidebar on startup
Cannot be hot reloaded (for obv reasons)
---
src/modules/sidebar/index.tsx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
(limited to 'src/modules/sidebar')
diff --git a/src/modules/sidebar/index.tsx b/src/modules/sidebar/index.tsx
index a908430..49a118b 100644
--- a/src/modules/sidebar/index.tsx
+++ b/src/modules/sidebar/index.tsx
@@ -1,6 +1,7 @@
import type { Monitor } from "@/services/monitors";
import { bind, register, Variable } from "astal";
import { App, Astal, Gdk, Gtk, Widget } from "astal/gtk3";
+import { sidebar } from "config";
import Dashboard from "./dashboard";
import NotifPane from "./notifpane";
@@ -16,7 +17,7 @@ export default class SideBar extends Widget.Window {
monitor: monitor.id,
anchor: Astal.WindowAnchor.LEFT | Astal.WindowAnchor.TOP | Astal.WindowAnchor.BOTTOM,
exclusivity: Astal.Exclusivity.EXCLUSIVE,
- // visible: false,
+ visible: sidebar.showOnStartup.get(),
});
const panes = [, ];
--
cgit v1.2.3-freya