more awesome 4.0 fixes
This commit is contained in:
parent
a43b908350
commit
7738e9ad32
5 changed files with 40 additions and 15 deletions
20
rules.lua
20
rules.lua
|
@ -38,6 +38,9 @@ awful.rules.rules = {
|
|||
if (c["class"] ~= nil) then
|
||||
print("class: " .. c["class"])
|
||||
end
|
||||
if (c["type"] ~= nil) then
|
||||
print("type: " .. c["type"])
|
||||
end
|
||||
end
|
||||
},
|
||||
{
|
||||
|
@ -81,7 +84,22 @@ awful.rules.rules = {
|
|||
{
|
||||
rule = { class = "Eclipse" },
|
||||
properties = {
|
||||
float = false
|
||||
screen = 1, tag = "8",
|
||||
floating = false
|
||||
}
|
||||
},
|
||||
{
|
||||
rule = { class = "Eclipse", name = nil, type = "dialog" },
|
||||
properties = {
|
||||
screen = 2, tag = "8",
|
||||
floating = false
|
||||
}
|
||||
},
|
||||
{
|
||||
rule = { class = "Eclipse", name = ".*", type = "dialog" },
|
||||
properties = {
|
||||
screen = 1, tag = "8",
|
||||
floating = false
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue