mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 19:49:45 +01:00
i3: correct example for config.floating.criteria
The parameter accepts a listOf criteriaModule (which is types.attrs, not types.string)
This commit is contained in:
parent
bc2f2ad546
commit
2785bf9cb2
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ let
|
||||||
type = types.listOf criteriaModule;
|
type = types.listOf criteriaModule;
|
||||||
default = [];
|
default = [];
|
||||||
description = "List of criteria for windows that should be opened in a floating mode.";
|
description = "List of criteria for windows that should be opened in a floating mode.";
|
||||||
example = [ "title='Steam - Update News'" "class='Pavucontrol'" ];
|
example = [ {"title" = "Steam - Update News";} {"class" = "Pavucontrol";} ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue