reno/modules/rules_stub.lua

22 lines
532 B
Lua
Raw Normal View History

2023-03-21 18:12:35 +00:00
local awful = require("awful")
local gears = require("gears")
awful.rules.rules = gears.table.join(awful.rules.rules, {
{ rule_any = { class = {
"steam_app_548430",
"steam_app_%d*",
2023-05-06 08:56:25 +00:00
"love",
"^Minecraft.*"
2023-03-21 18:12:35 +00:00
}},
properties = {inhibit_compositor = true},
},
2023-05-06 08:56:25 +00:00
{ rule_any = { class = {
"thunderbird"
}},
properties = {callback = function(c)
gears.timer.delayed_call(function()
c.minimized = true
end)
end}
}
2023-03-21 18:12:35 +00:00
})