Commit ceb50354 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Improve AwesomeWM rules for Steam dialogs

parent a3d67c42
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ local util = require("util")
-- {{{ Link titlebars with floating property

function set_titlebar(c)
	if c.floating then
	if c.floating and not c.skip_taskbar then
		awful.titlebar.show(c)
	else
		awful.titlebar.hide(c)
@@ -96,9 +96,12 @@ rules.add_rule{
	},
	except_any = {
		type = { "menu" },
		name = { "Steam" },
		name = { "^Steam$" },
	},
	properties = {
		floating = true,
		skip_taskbar = true,
	},
	properties = { floating = true },
}

-- }}}