Open the agent in a normal tiled window (#6769)

The floating rule pinned every agent terminal to 1200x800, which
overflows small and scaled displays: window rules see logical pixels, so
a 2560x1440 monitor at scale 1.6 is only 1600x900 and the window covered
89% of its height. Tiling drops the fixed size along with the rule, and
the shared app-id still earns the terminal tag from terminals.lua.
This commit is contained in:
David Heinemeier Hansson
2026-08-12 22:37:16 +02:00
committed by GitHub
parent 438f7b3340
commit 38542a1f51
3 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -100,6 +100,6 @@ if [[ $inline == "true" ]]; then
exec "${command[@]}"
else
# A fixed app-id rather than the default org.omarchy.<binary>, so every agent
# window shares one class for default/hypr/apps/agent.lua to float.
# window shares one class for window rules and themes to single out.
exec omarchy-launch-tui --app-id=org.omarchy.agent "${command[@]}"
fi