From 7cea6a69e6b9429ac9a9ec02e77600ed04994b6b Mon Sep 17 00:00:00 2001 From: Daan Vanoverloop Date: Wed, 28 Aug 2019 17:33:12 +0200 Subject: [PATCH] Important fixes and improvements --- .config/awesome/rc.lua | 3 +-- .config/awesome/theme.lua | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 327e513..9796a6c 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -343,12 +343,11 @@ function end_switcher () -- Set the master window for _, c in ipairs(client.get()) do - awful.client.setslave(c) c.border_width = 0 awful.titlebar.hide(c) end - awful.client.setmaster(client.focus) + client.focus:swap(awful.client.getmaster()) -- Disable all bars for s in screen do diff --git a/.config/awesome/theme.lua b/.config/awesome/theme.lua index d45d83b..8b721c1 100644 --- a/.config/awesome/theme.lua +++ b/.config/awesome/theme.lua @@ -19,7 +19,7 @@ theme.bg_urgent = "#ff0000" theme.bg_minimize = "#444444" theme.bg_systray = theme.bg_normal -theme.fg_normal = "#aaaaaa" +theme.fg_normal = "#f0f0f0" theme.fg_focus = "#ffffff" theme.fg_urgent = "#ffffff" theme.fg_minimize = "#ffffff"