Commit 1e76298f authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Add steam to awesome rules

parent 4ad5abb3
Loading
Loading
Loading
Loading
+22 −1
Original line number Diff line number Diff line
@@ -59,6 +59,16 @@ for _, v in ipairs(main_menu) do mymainmenu:add(v) end

-- {{{ Global rules

rules.add_rule{
	rule_any = {
		type = {
			"normal"
		}
	},
	properties = {
		floating = false,
	}
}
rules.add_rule{
	rule_any = {
		role = {
@@ -82,6 +92,17 @@ rules.add_rule{
		floating = true,
	}
}
rules.add_rule{
	rule = {
		class = "Steam",
	},
	except_any = {
		type = { "menu" },
		name = { "Steam" },
	},
	properties = { floating = true },
}

-- }}}