mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-05-11 00:56:12 +08:00
Add some more window rules
This commit is contained in:
parent
30016ba241
commit
a6b7c069a2
1 changed files with 20 additions and 1 deletions
|
|
@ -422,6 +422,21 @@ awful.rules.rules = {
|
|||
properties = { fullscreen = true }
|
||||
},
|
||||
|
||||
-- Unfocusable clients (unless clicked with the mouse)
|
||||
-- If you want to prevent focusing even when clicking them, you need to
|
||||
-- modify the left click client mouse bind in keys.lua
|
||||
{
|
||||
rule_any = {
|
||||
class = {
|
||||
"markdown_input"
|
||||
},
|
||||
instance = {
|
||||
"markdown_input"
|
||||
},
|
||||
},
|
||||
properties = { focusable = false }
|
||||
},
|
||||
|
||||
-- Centered clients
|
||||
{
|
||||
rule_any = {
|
||||
|
|
@ -450,7 +465,9 @@ awful.rules.rules = {
|
|||
"riotclientservices.exe",
|
||||
"leagueclientux.exe",
|
||||
"riotclientux.exe",
|
||||
"leagueclient.exe"
|
||||
"leagueclient.exe",
|
||||
"editor",
|
||||
"markdown_input"
|
||||
},
|
||||
class = {
|
||||
"qutebrowser",
|
||||
|
|
@ -462,6 +479,8 @@ awful.rules.rules = {
|
|||
"Steam",
|
||||
"Lutris",
|
||||
"Chromium",
|
||||
"editor",
|
||||
"markdown_input"
|
||||
-- "Thunderbird",
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue