mirror of
https://github.com/nix-community/home-manager
synced 2025-01-10 19:19:52 +01:00
trayer: add module (#2177)
This commit is contained in:
parent
784da32958
commit
cc6909d407
8 changed files with 231 additions and 0 deletions
3
.github/CODEOWNERS
vendored
3
.github/CODEOWNERS
vendored
|
@ -304,6 +304,9 @@
|
||||||
|
|
||||||
/modules/services/taskwarrior-sync.nix @minijackson @pacien
|
/modules/services/taskwarrior-sync.nix @minijackson @pacien
|
||||||
|
|
||||||
|
/modules/services/trayer.nix @AndreasMager
|
||||||
|
/tests/modules/services/trayer @AndreasMager
|
||||||
|
|
||||||
/modules/services/udiskie.nix @rycee
|
/modules/services/udiskie.nix @rycee
|
||||||
|
|
||||||
/modules/services/unison.nix @pacien
|
/modules/services/unison.nix @pacien
|
||||||
|
|
|
@ -115,4 +115,10 @@
|
||||||
githubId = 56614642;
|
githubId = 56614642;
|
||||||
name = "Ilan Joselevich";
|
name = "Ilan Joselevich";
|
||||||
};
|
};
|
||||||
|
mager = {
|
||||||
|
email = "andreas@mager.eu";
|
||||||
|
github = "AndreasMager";
|
||||||
|
githubId = 5646732;
|
||||||
|
name = "Andreas Mager";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -2141,6 +2141,13 @@ in
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
time = "2021-07-23T22:22:31+00:00";
|
||||||
|
condition = hostPlatform.isLinux;
|
||||||
|
message = ''
|
||||||
|
A new module is available: 'services.trayer'.
|
||||||
|
'';
|
||||||
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -206,6 +206,7 @@ let
|
||||||
./services/sxhkd.nix
|
./services/sxhkd.nix
|
||||||
./services/syncthing.nix
|
./services/syncthing.nix
|
||||||
./services/taffybar.nix
|
./services/taffybar.nix
|
||||||
|
./services/trayer.nix
|
||||||
./services/tahoe-lafs.nix
|
./services/tahoe-lafs.nix
|
||||||
./services/taskwarrior-sync.nix
|
./services/taskwarrior-sync.nix
|
||||||
./services/udiskie.nix
|
./services/udiskie.nix
|
||||||
|
|
183
modules/services/trayer.nix
Normal file
183
modules/services/trayer.nix
Normal file
|
@ -0,0 +1,183 @@
|
||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
with lib;
|
||||||
|
|
||||||
|
let
|
||||||
|
|
||||||
|
boolTrue = {
|
||||||
|
type = types.bool;
|
||||||
|
values = "true|false";
|
||||||
|
default = "true";
|
||||||
|
};
|
||||||
|
|
||||||
|
number0 = {
|
||||||
|
type = types.int;
|
||||||
|
values = "number";
|
||||||
|
default = "0";
|
||||||
|
};
|
||||||
|
|
||||||
|
knownSettings = {
|
||||||
|
edge = {
|
||||||
|
type = types.str;
|
||||||
|
values = "left|right|top|bottom|none";
|
||||||
|
default = "bottom";
|
||||||
|
};
|
||||||
|
|
||||||
|
align = {
|
||||||
|
type = types.str;
|
||||||
|
values = "left|right|center";
|
||||||
|
default = "center";
|
||||||
|
};
|
||||||
|
|
||||||
|
margin = number0;
|
||||||
|
widthtype = {
|
||||||
|
type = types.str;
|
||||||
|
values = "request|pixel|percent";
|
||||||
|
default = "percent";
|
||||||
|
};
|
||||||
|
|
||||||
|
width = {
|
||||||
|
type = types.int;
|
||||||
|
values = "number";
|
||||||
|
default = "100";
|
||||||
|
};
|
||||||
|
|
||||||
|
heighttype = {
|
||||||
|
type = types.str;
|
||||||
|
values = "request|pixel";
|
||||||
|
default = "pixel";
|
||||||
|
};
|
||||||
|
|
||||||
|
height = {
|
||||||
|
type = types.int;
|
||||||
|
values = "number";
|
||||||
|
default = "26";
|
||||||
|
};
|
||||||
|
|
||||||
|
SetDockType = boolTrue;
|
||||||
|
|
||||||
|
SetPartialStrut = boolTrue;
|
||||||
|
|
||||||
|
transparent = {
|
||||||
|
type = types.bool;
|
||||||
|
values = "true|false";
|
||||||
|
default = "false";
|
||||||
|
};
|
||||||
|
|
||||||
|
alpha = {
|
||||||
|
type = types.int;
|
||||||
|
values = "number";
|
||||||
|
default = "127";
|
||||||
|
};
|
||||||
|
|
||||||
|
tint = {
|
||||||
|
type = types.str;
|
||||||
|
values = "int";
|
||||||
|
default = "0xFFFFFFFF";
|
||||||
|
};
|
||||||
|
|
||||||
|
distance = number0;
|
||||||
|
|
||||||
|
distancefrom = {
|
||||||
|
type = types.str;
|
||||||
|
values = "left|right|top|bottom";
|
||||||
|
default = "top";
|
||||||
|
};
|
||||||
|
|
||||||
|
expand = boolTrue;
|
||||||
|
|
||||||
|
padding = number0;
|
||||||
|
|
||||||
|
monitor = {
|
||||||
|
values = "number|primary";
|
||||||
|
type = types.str;
|
||||||
|
default = "0";
|
||||||
|
};
|
||||||
|
|
||||||
|
iconspacing = number0;
|
||||||
|
};
|
||||||
|
|
||||||
|
cfg = config.services.trayer;
|
||||||
|
|
||||||
|
in {
|
||||||
|
meta.maintainers = [ maintainers.mager ];
|
||||||
|
|
||||||
|
options = {
|
||||||
|
services.trayer = {
|
||||||
|
enable = mkEnableOption
|
||||||
|
"trayer, the lightweight GTK2+ systray for UNIX desktops";
|
||||||
|
|
||||||
|
package = mkOption {
|
||||||
|
default = pkgs.trayer;
|
||||||
|
defaultText = literalExample "pkgs.trayer";
|
||||||
|
type = types.package;
|
||||||
|
example = literalExample "pkgs.trayer";
|
||||||
|
description = "The package to use for the trayer binary.";
|
||||||
|
};
|
||||||
|
|
||||||
|
settings = mkOption {
|
||||||
|
type = with types; attrsOf (nullOr (either str (either bool int)));
|
||||||
|
description = ''
|
||||||
|
Trayer configuration as a set of attributes. Further details can be
|
||||||
|
found at <link xlink:href="https://github.com/sargon/trayer-srg"/>.
|
||||||
|
|
||||||
|
<informaltable frame="none"><tgroup cols="4">
|
||||||
|
<thead>
|
||||||
|
<row>
|
||||||
|
<entry>Property Name</entry>
|
||||||
|
<entry>Type</entry>
|
||||||
|
<entry>Values</entry>
|
||||||
|
<entry>Default</entry>
|
||||||
|
</row>
|
||||||
|
</thead><tbody>
|
||||||
|
${concatStringsSep "\n" (mapAttrsToList (n: v: ''
|
||||||
|
<row>
|
||||||
|
<entry><varname>${n}</varname></entry>
|
||||||
|
<entry>${v.type.description}</entry>
|
||||||
|
<entry>${v.values}</entry>
|
||||||
|
<entry>${v.default}</entry>
|
||||||
|
</row>
|
||||||
|
'') knownSettings)}
|
||||||
|
</tbody></tgroup></informaltable>
|
||||||
|
'';
|
||||||
|
default = { };
|
||||||
|
example = literalExample ''
|
||||||
|
{
|
||||||
|
edge = "top";
|
||||||
|
padding = 6;
|
||||||
|
SetDockType = true;
|
||||||
|
tint = "0x282c34";
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable ({
|
||||||
|
assertions = [
|
||||||
|
(lib.hm.assertions.assertPlatform "services.trayer" pkgs
|
||||||
|
lib.platforms.linux)
|
||||||
|
];
|
||||||
|
|
||||||
|
home.packages = [ cfg.package ];
|
||||||
|
|
||||||
|
systemd.user.services.trayer = let
|
||||||
|
valueToString = v:
|
||||||
|
if isBool v then (if v then "true" else "false") else "${toString v}";
|
||||||
|
parameter = k: v: "--${k} ${valueToString v}";
|
||||||
|
parameters = concatStringsSep " " (mapAttrsToList parameter cfg.settings);
|
||||||
|
in {
|
||||||
|
Unit = {
|
||||||
|
Description = "trayer -- lightweight GTK2+ systray for UNIX desktops";
|
||||||
|
PartOf = [ "tray.target" ];
|
||||||
|
};
|
||||||
|
|
||||||
|
Install.WantedBy = [ "tray.target" ];
|
||||||
|
|
||||||
|
Service = {
|
||||||
|
ExecStart = "${cfg.package}/bin/trayer ${parameters}";
|
||||||
|
Restart = "on-failure";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
|
@ -128,6 +128,7 @@ import nmt {
|
||||||
./modules/services/redshift-gammastep
|
./modules/services/redshift-gammastep
|
||||||
./modules/services/sxhkd
|
./modules/services/sxhkd
|
||||||
./modules/services/syncthing
|
./modules/services/syncthing
|
||||||
|
./modules/services/trayer
|
||||||
./modules/services/window-managers/bspwm
|
./modules/services/window-managers/bspwm
|
||||||
./modules/services/window-managers/i3
|
./modules/services/window-managers/i3
|
||||||
./modules/services/window-managers/sway
|
./modules/services/window-managers/sway
|
||||||
|
|
29
tests/modules/services/trayer/basic-configuration.nix
Normal file
29
tests/modules/services/trayer/basic-configuration.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
config = {
|
||||||
|
services.trayer = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.writeScriptBin "dummy-trayer" "" // {
|
||||||
|
outPath = "@trayer@";
|
||||||
|
};
|
||||||
|
settings = {
|
||||||
|
edge = "top";
|
||||||
|
padding = 6;
|
||||||
|
SetDockType = true;
|
||||||
|
tint = "0x282c34";
|
||||||
|
SetPartialStrut = true;
|
||||||
|
expand = true;
|
||||||
|
monitor = 1;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
nmt.script = ''
|
||||||
|
serviceFile=home-files/.config/systemd/user/trayer.service
|
||||||
|
|
||||||
|
assertFileExists $serviceFile
|
||||||
|
assertFileContains $serviceFile \
|
||||||
|
'ExecStart=@trayer@/bin/trayer --SetDockType true --SetPartialStrut true --edge top --expand true --monitor 1 --padding 6 --tint 0x282c34'
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
1
tests/modules/services/trayer/default.nix
Normal file
1
tests/modules/services/trayer/default.nix
Normal file
|
@ -0,0 +1 @@
|
||||||
|
{ trayer-basic-configuration = ./basic-configuration.nix; }
|
Loading…
Reference in a new issue