feat: provide option to display the appswitcher on all displays

This commit is contained in:
Jan Schmitt 2022-08-20 17:32:11 +02:00
parent 80871c71ed
commit fbca12e524
No known key found for this signature in database
GPG key ID: F03E7A35B52BA595
2 changed files with 10 additions and 0 deletions

View file

@ -15,6 +15,14 @@ let
in {
options = {
system.defaults.dock.appswitcher-all-displays = mkOption {
type = types.nullOr types.bool;
default = null;
description = ''
Whether to display the appswitcher on all displays or only the main one. The default is false.
'';
};
system.defaults.dock.autohide = mkOption {
type = types.nullOr types.bool;
default = null;