From f7efd5ee7a18b6e5b3e75206999d4a36c983ce3c Mon Sep 17 00:00:00 2001
From: matt1432 <matt@nelim.org>
Date: Tue, 19 Sep 2023 23:35:25 -0400
Subject: [PATCH] fix(ags): set correct position for special ws

---
 config/ags/js/overview/main.js | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/config/ags/js/overview/main.js b/config/ags/js/overview/main.js
index 4ab88336..4540ccda 100644
--- a/config/ags/js/overview/main.js
+++ b/config/ags/js/overview/main.js
@@ -69,11 +69,15 @@ export const Overview = Window({
               let active = '';
               if (app.address == Hyprland.active.client.address) {
                 active = 'active';
+                print(app.at[0])
+                print(app.at[1])
               }
 
               if (app.size[0] === 0) {
                 app.size[0] = 1524;
                 app.size[1] = 908;
+                app.at[0] = 197;
+                app.at[1] = 170;
               }
 
               fixed.put(
@@ -108,6 +112,7 @@ export const Overview = Window({
               childI = 1;
             }
 
+            // TODO: make this a revealer so no awkward jump
             box.children[childI].centerWidget.add(
               Box({
                 properties: [['id', ws.id]],