Some rule updates
This commit is contained in:
parent
79c0a95ecb
commit
3d524e8f3e
33
rules.lua
33
rules.lua
|
@ -37,6 +37,13 @@ local function setup(self)
|
||||||
rule = { class = "Passprompt" },
|
rule = { class = "Passprompt" },
|
||||||
properties = { ontop = true, focus = true}
|
properties = { ontop = true, focus = true}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
rule = { class = "Sm" },
|
||||||
|
properties = {
|
||||||
|
ontop = true,
|
||||||
|
border_width = 0
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
rule_any = { class = {
|
rule_any = { class = {
|
||||||
"pinentry", "Passprompt", "MPlayer"
|
"pinentry", "Passprompt", "MPlayer"
|
||||||
|
@ -64,6 +71,14 @@ local function setup(self)
|
||||||
master = true
|
master = true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
rule = { class = "Steam", name = "Friends" },
|
||||||
|
properties = {
|
||||||
|
master = true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
rule_any = { role ={ "conversation" }, instance = { "Weechat" } },
|
rule_any = { role ={ "conversation" }, instance = { "Weechat" } },
|
||||||
callback = awful.client.setslave
|
callback = awful.client.setslave
|
||||||
|
@ -111,6 +126,14 @@ local function setup(self)
|
||||||
tag = tags[rule_screen][7]
|
tag = tags[rule_screen][7]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
rule = { class = "Pdfpc" },
|
||||||
|
properties = {
|
||||||
|
size_hints_honor = true,
|
||||||
|
float = true,
|
||||||
|
fullscreen = true
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
rule = { class = "Cellwriter" },
|
rule = { class = "Cellwriter" },
|
||||||
properties = {
|
properties = {
|
||||||
|
@ -128,6 +151,12 @@ local function setup(self)
|
||||||
tag = tags[rule_screen][22]
|
tag = tags[rule_screen][22]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
rule = { class = "Dmenu" },
|
||||||
|
properties = {
|
||||||
|
opacity = 0.8
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
rule = { class = "URxvt" },
|
rule = { class = "URxvt" },
|
||||||
properties = {
|
properties = {
|
||||||
|
@ -146,10 +175,8 @@ local function setup(self)
|
||||||
tag = tags[rule_screen][13],
|
tag = tags[rule_screen][13],
|
||||||
skip_taskbar = true,
|
skip_taskbar = true,
|
||||||
type = desktop,
|
type = desktop,
|
||||||
below = true,
|
|
||||||
focusable = false,
|
focusable = false,
|
||||||
border_width = 0,
|
border_width = 0
|
||||||
floating = true
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue