From 78ecab8ecfe15bac39f63c39870993d8f1dca2bb Mon Sep 17 00:00:00 2001 From: Kolan Sh Date: Fri, 28 Jan 2022 21:09:13 +0300 Subject: [PATCH] QuakeConsole: fix start positions. --- rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.lua b/rc.lua index fbeeac0..26fcccd 100644 --- a/rc.lua +++ b/rc.lua @@ -813,7 +813,7 @@ awful.rules.rules = { width=awful.screen.focused().workarea.width * 0.96, height=awful.screen.focused().workarea.height * 0.4, x = awful.screen.focused().workarea.width * 0.02, - y = awful.screen.focused().workarea.height * 0.6 + mywibox_height + y = awful.screen.focused().workarea.height * 0.6 + mywibox_height - 4 } }, { rule = { instance = "QuakeConsole2" }, @@ -828,7 +828,7 @@ awful.rules.rules = { properties = { width=awful.screen.focused().workarea.width * 0.4, height=awful.screen.focused().workarea.height * 0.6 - mywibox_height, - x = awful.screen.focused().workarea.width * 0.6, + x = awful.screen.focused().workarea.width * 0.6 - 4, y = mywibox_height } },