mirror of
https://github.com/nix-community/home-manager
synced 2024-11-04 18:29:45 +01:00
xsession: add option preferStatusNotifierItems
The intent is for tray applets to honor this option if they support the SNI protocol.
This commit is contained in:
parent
29ad012763
commit
6ae2d74fca
1 changed files with 11 additions and 0 deletions
|
@ -30,6 +30,17 @@ in
|
|||
'';
|
||||
};
|
||||
|
||||
preferStatusNotifierItems = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
example = true;
|
||||
description = ''
|
||||
Whether tray applets should prefer using the Status Notifier
|
||||
Items (SNI) protocol, commonly called App Indicators. Note,
|
||||
not all tray applets or status bars support SNI.
|
||||
'';
|
||||
};
|
||||
|
||||
profileExtra = mkOption {
|
||||
type = types.lines;
|
||||
default = "";
|
||||
|
|
Loading…
Reference in a new issue