diff options
Diffstat (limited to 'awesome/rc.lua')
-rwxr-xr-x | awesome/rc.lua | 8 |
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" } |