bspwm: add missing rule setting `rectangle` (#2974)

Also add a `freeformType` so that we don't have to do this in the
future.
This commit is contained in:
Naïm Camille Favier 2022-07-07 05:36:20 +02:00 committed by GitHub
parent f2445620d1
commit face4094d4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 4 deletions

View File

@ -4,7 +4,11 @@ with lib;
let
primitive = with types; oneOf [ bool int float str ];
rule = types.submodule {
freeformType = with types; attrsOf primitive;
options = {
monitor = mkOption {
type = types.nullOr types.str;
@ -139,6 +143,14 @@ let
description = "Whether the node should have border.";
example = true;
};
rectangle = mkOption {
type = types.nullOr types.str;
default = null;
description =
"The node's geometry, in the format <literal>WxH+X+Y</literal>.";
example = "800x600+32+32";
};
};
};
@ -155,9 +167,7 @@ in {
};
settings = mkOption {
type = with types;
let primitive = either bool (either int (either float str));
in attrsOf (either primitive (listOf primitive));
type = with types; attrsOf (either primitive (listOf primitive));
default = { };
description = "General settings given to <literal>bspc config</literal>.";
example = {

View File

@ -9,7 +9,7 @@ bspc config 'ignore_ewmh_fullscreen' 'enter,exit'
bspc config 'split_ratio' '0.520000'
bspc rule -r '*'
bspc rule -a '*' 'center=off' 'desktop=d'\''esk top#next' 'split_dir=north' 'sticky=on'
bspc rule -a '*' 'center=off' 'desktop=d'\''esk top#next' 'split_dir=north' 'sticky=on' 'unknown_rule=42'
# java gui fixes
export _JAVA_AWT_WM_NONREPARENTING=1

View File

@ -22,6 +22,7 @@ with lib;
desktop = "d'esk top#next";
splitDir = "north";
border = null;
unknownRule = 42;
};
extraConfig = ''
extra config