1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02: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:
Robert Helgesson 2018-07-24 12:48:53 +02:00
parent 29ad012763
commit 6ae2d74fca
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -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 = "";