mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2026-02-18 22:05:28 -05:00
feat: add windowrule option isnoshadow,isnoanimation
This commit is contained in:
parent
649cfdb54c
commit
beaa4ce902
3 changed files with 18 additions and 1 deletions
|
|
@ -330,6 +330,8 @@ struct Client {
|
|||
int is_scratchpad_show;
|
||||
int isglobal;
|
||||
int isnoborder;
|
||||
int isnoshadow;
|
||||
int isnoanimation;
|
||||
int isopensilent;
|
||||
int istagsilent;
|
||||
int iskilling;
|
||||
|
|
@ -1144,6 +1146,8 @@ static void apply_rule_properties(Client *c, const ConfigWinRule *r) {
|
|||
APPLY_INT_PROP(c, r, isfloating);
|
||||
APPLY_INT_PROP(c, r, isfullscreen);
|
||||
APPLY_INT_PROP(c, r, isnoborder);
|
||||
APPLY_INT_PROP(c, r, isnoshadow);
|
||||
APPLY_INT_PROP(c, r, isnoanimation);
|
||||
APPLY_INT_PROP(c, r, isopensilent);
|
||||
APPLY_INT_PROP(c, r, istagsilent);
|
||||
APPLY_INT_PROP(c, r, isnamedscratchpad);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue