Change window rules
This commit is contained in:
@@ -21,7 +21,6 @@ awful.rules.rules = {
|
|||||||
instance = {
|
instance = {
|
||||||
},
|
},
|
||||||
class = {
|
class = {
|
||||||
"anbox",
|
|
||||||
"Arandr",
|
"Arandr",
|
||||||
"Blueman-manager",
|
"Blueman-manager",
|
||||||
"Tor Browser",
|
"Tor Browser",
|
||||||
@@ -43,6 +42,30 @@ awful.rules.rules = {
|
|||||||
},
|
},
|
||||||
properties = {floating = true},
|
properties = {floating = true},
|
||||||
},
|
},
|
||||||
|
-- Fullscreen clients.
|
||||||
|
{
|
||||||
|
rule_any = {
|
||||||
|
name = {
|
||||||
|
"Looking Glass (client)"
|
||||||
|
},
|
||||||
|
},
|
||||||
|
properties = {
|
||||||
|
fullscreen = true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
-- Anbox floating window size
|
||||||
|
{
|
||||||
|
rule_any = {
|
||||||
|
class = {
|
||||||
|
"anbox",
|
||||||
|
}
|
||||||
|
},
|
||||||
|
properties = {
|
||||||
|
floating = true,
|
||||||
|
height = 1280,
|
||||||
|
width = 800,
|
||||||
|
},
|
||||||
|
},
|
||||||
-- Music Visualizer
|
-- Music Visualizer
|
||||||
{
|
{
|
||||||
rule_any = {
|
rule_any = {
|
||||||
@@ -75,16 +98,5 @@ awful.rules.rules = {
|
|||||||
requests_no_titlebar = true,
|
requests_no_titlebar = true,
|
||||||
focusable = false
|
focusable = false
|
||||||
}
|
}
|
||||||
},
|
|
||||||
-- Looking Glass always fullscreen
|
|
||||||
{
|
|
||||||
rule_any = {
|
|
||||||
name = {
|
|
||||||
"Looking Glass (client)"
|
|
||||||
},
|
|
||||||
},
|
|
||||||
properties = {
|
|
||||||
fullscreen = true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Reference in New Issue
Block a user