Big changes
This commit is contained in:
@@ -2,7 +2,7 @@ local awful = require("awful")
|
||||
local beautiful = require("beautiful")
|
||||
|
||||
awful.rules.rules = {
|
||||
-- All clients will match this rule.
|
||||
-- All clients
|
||||
{
|
||||
rule = {},
|
||||
properties = {
|
||||
@@ -15,7 +15,7 @@ awful.rules.rules = {
|
||||
placement = awful.placement.no_overlap + awful.placement.no_offscreen + awful.placement.centered
|
||||
}
|
||||
},
|
||||
-- Floating clients.
|
||||
-- Floating clients
|
||||
{
|
||||
rule_any = {
|
||||
instance = {
|
||||
@@ -42,7 +42,7 @@ awful.rules.rules = {
|
||||
},
|
||||
properties = {floating = true},
|
||||
},
|
||||
-- Fullscreen clients.
|
||||
-- Fullscreen clients
|
||||
{
|
||||
rule_any = {
|
||||
name = {
|
||||
@@ -53,6 +53,18 @@ awful.rules.rules = {
|
||||
fullscreen = true
|
||||
}
|
||||
},
|
||||
-- Ontop clients
|
||||
{
|
||||
rule_any = {
|
||||
class = {
|
||||
"qalculate-gtk",
|
||||
"Qalculate-gtk",
|
||||
},
|
||||
},
|
||||
properties = {
|
||||
ontop = true
|
||||
}
|
||||
},
|
||||
-- Anbox floating window size
|
||||
{
|
||||
rule_any = {
|
||||
@@ -62,8 +74,8 @@ awful.rules.rules = {
|
||||
},
|
||||
properties = {
|
||||
floating = true,
|
||||
height = 1280,
|
||||
width = 800,
|
||||
height = 800,
|
||||
width = 480,
|
||||
},
|
||||
},
|
||||
-- Music Visualizer
|
||||
|
Reference in New Issue
Block a user