aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-10-30 10:27:17 +0530
committerVidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com>2020-10-30 10:27:17 +0530
commit00072351a6f55ed7d289da76aef0f8ffd0d9aad4 (patch)
tree2b434a8305eb3a1347d9df75f09086c04860f564
parente91a90472154b3b9d848e03e271045758bc238e6 (diff)
fixed the layout box not showing in titlebar
-rwxr-xr-xawesome/rc.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index b9630364..7baa29c7 100755
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -241,7 +241,7 @@ awful.screen.connect_for_each_screen(function(s)
-- s.mytasklist,
-- },
{ -- Right widgets
- layout = wibox.layout.align.horizontal,
+ layout = wibox.layout.fixed.horizontal,
s.mytasklist,
mykeyboardlayout,
mytextclock,
@@ -511,7 +511,6 @@ awful.rules.rules = {
border_color = beautiful.border_normal,
focus = awful.client.focus.filter,
raise = true,
- keys = clientkeys,
buttons = clientbuttons,
screen = awful.screen.preferred,
placement = awful.placement.no_overlap+awful.placement.no_offscreen
@@ -547,7 +546,10 @@ awful.rules.rules = {
"ConfigManager", -- Thunderbird's about:config.
"pop-up", -- e.g. Google Chrome's (detached) Developer Tools.
}
- }, properties = { floating = true }},
+ }, properties = { floating = true,
+ above = true,
+ titlebars_enabled = true,
+ }},
-- Add titlebars to normal clients and dialogs
{ rule_any = {type = { "normal", "dialog" }