X-Git-Url: https://git.madduck.net/etc/awesome.git/blobdiff_plain/f04990f4dd4698ebb0d40d7a8a0834228007bdd9..02c85c0e1c4b6c87a3e018e3f1f8d9d1bf15ec01:/.config/awesome/rc.lua diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index f4f9da0..99b72e9 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -14,6 +14,7 @@ local hotkeys_popup = require("awful.hotkeys_popup").widget local lain = require("lain") local dkjson = require("lain.util").dkjson local math = require("math") +local freedesktop = require("freedesktop") -- }}} -- {{{ Error handling @@ -178,10 +179,14 @@ myawesomemenu = { { "quit", awesome.quit } } -mymainmenu = awful.menu({ items = { { "awesome", myawesomemenu, beautiful.awesome_icon }, - { "open terminal", terminal } - } - }) +mymainmenu = freedesktop.menu.build({ + before = { + { "awesome", myawesomemenu, beautiful.awesome_icon }, + { "terminal", terminal }, + }, + after = { + } +}) mylauncher = awful.widget.launcher({ image = beautiful.awesome_icon, menu = mymainmenu }) @@ -618,7 +623,7 @@ awful.rules.rules = { { rule = { class = "URxvt" }, properties = { - floating = false, + -- floating = false, size_hints_honor = false } }, { rule = { class = "URxvt", instance = "irc" }, @@ -677,6 +682,11 @@ awful.rules.rules = { floating = true, }, }, + { rule = { class = "Gxmessage" }, + properties = { + floating = true, + }, + }, } -- }}} @@ -685,7 +695,7 @@ awful.rules.rules = { client.connect_signal("manage", function (c) -- Set the windows at the slave, -- i.e. put it at the end of others instead of setting it master. - -- if not awesome.startup then awful.client.setslave(c) end + if not awesome.startup then awful.client.setslave(c) end if awesome.startup and not c.size_hints.user_position