default config: improve floating windows (#2023)
* default config: floating windows: fix pinentry-gtk-2 We have class "pinentry" there already, but it seems to have changed to "Pinentry"?! This uses "instance" instead, which hopefully works in the old case also. pinentry 1.0.0-1, gnupg 2.1.23-1 Also adds Blueman-manager and ConfigManager.
This commit is contained in:
parent
9e4446060e
commit
69d06f7e3a
|
@ -482,15 +482,16 @@ awful.rules.rules = {
|
||||||
instance = {
|
instance = {
|
||||||
"DTA", -- Firefox addon DownThemAll.
|
"DTA", -- Firefox addon DownThemAll.
|
||||||
"copyq", -- Includes session name in class.
|
"copyq", -- Includes session name in class.
|
||||||
|
"pinentry",
|
||||||
},
|
},
|
||||||
class = {
|
class = {
|
||||||
"Arandr",
|
"Arandr",
|
||||||
|
"Blueman-manager",
|
||||||
"Gpick",
|
"Gpick",
|
||||||
"Kruler",
|
"Kruler",
|
||||||
"MessageWin", -- kalarm.
|
"MessageWin", -- kalarm.
|
||||||
"Sxiv",
|
"Sxiv",
|
||||||
"Wpa_gui",
|
"Wpa_gui",
|
||||||
"pinentry",
|
|
||||||
"veromix",
|
"veromix",
|
||||||
"xtightvncviewer"},
|
"xtightvncviewer"},
|
||||||
|
|
||||||
|
@ -499,6 +500,7 @@ awful.rules.rules = {
|
||||||
},
|
},
|
||||||
role = {
|
role = {
|
||||||
"AlarmWindow", -- Thunderbird's calendar.
|
"AlarmWindow", -- Thunderbird's calendar.
|
||||||
|
"ConfigManager", -- Thunderbird's about:config.
|
||||||
"pop-up", -- e.g. Google Chrome's (detached) Developer Tools.
|
"pop-up", -- e.g. Google Chrome's (detached) Developer Tools.
|
||||||
}
|
}
|
||||||
}, properties = { floating = true }},
|
}, properties = { floating = true }},
|
||||||
|
|
Loading…
Reference in New Issue