2018-02-02 16:25:51 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.stalonetray;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-02-02 16:25:51 +01:00
|
|
|
options = {
|
|
|
|
services.stalonetray = {
|
|
|
|
enable = mkEnableOption "Stalonetray system tray";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
default = pkgs.stalonetray;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.stalonetray";
|
2018-02-02 16:25:51 +01:00
|
|
|
type = types.package;
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "pkgs.stalonetray";
|
2018-02-02 16:25:51 +01:00
|
|
|
description = "The package to use for the Stalonetray binary.";
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkOption {
|
2020-02-02 00:39:17 +01:00
|
|
|
type = with types; attrsOf (nullOr (either str (either bool int)));
|
|
|
|
description = ''
|
|
|
|
Stalonetray configuration as a set of attributes.
|
|
|
|
'';
|
|
|
|
default = { };
|
|
|
|
example = {
|
|
|
|
geometry = "3x1-600+0";
|
|
|
|
decorations = null;
|
|
|
|
icon_size = 30;
|
|
|
|
sticky = true;
|
|
|
|
background = "#cccccc";
|
|
|
|
};
|
2018-02-02 16:25:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extraConfig = mkOption {
|
|
|
|
type = types.lines;
|
|
|
|
description = "Additional configuration lines for stalonetrayrc.";
|
|
|
|
default = "";
|
|
|
|
example = ''
|
2020-02-02 00:39:17 +01:00
|
|
|
geometry 3x1-600+0
|
|
|
|
decorations none
|
|
|
|
icon_size 30
|
|
|
|
sticky true
|
|
|
|
background "#cccccc"
|
2018-02-02 16:25:51 +01:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (mkMerge [
|
|
|
|
{
|
2022-04-24 16:25:54 +02:00
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "services.stalonetray" pkgs
|
|
|
|
platforms.linux)
|
|
|
|
];
|
|
|
|
|
2018-02-02 16:25:51 +01:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
systemd.user.services.stalonetray = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Stalonetray system tray";
|
2021-05-22 04:15:12 +02:00
|
|
|
PartOf = [ "tray.target" ];
|
2018-02-02 16:25:51 +01:00
|
|
|
};
|
|
|
|
|
2021-05-22 04:15:12 +02:00
|
|
|
Install = { WantedBy = [ "tray.target" ]; };
|
2018-02-02 16:25:51 +01:00
|
|
|
|
|
|
|
Service = {
|
|
|
|
ExecStart = "${cfg.package}/bin/stalonetray";
|
|
|
|
Restart = "on-failure";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
(mkIf (cfg.config != { }) {
|
2024-06-23 21:11:25 +02:00
|
|
|
xdg.configFile."stalonetrayrc".text = let
|
2020-02-02 00:39:17 +01:00
|
|
|
valueToString = v:
|
|
|
|
if isBool v then
|
|
|
|
(if v then "true" else "false")
|
|
|
|
else if (v == null) then
|
|
|
|
"none"
|
|
|
|
else
|
|
|
|
''"${toString v}"'';
|
|
|
|
in concatStrings (mapAttrsToList (k: v: ''
|
|
|
|
${k} ${valueToString v}
|
|
|
|
'') cfg.config);
|
2018-02-02 16:25:51 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
(mkIf (cfg.extraConfig != "") {
|
2024-06-23 21:11:25 +02:00
|
|
|
xdg.configFile."stalonetrayrc".text = cfg.extraConfig;
|
2018-02-02 16:25:51 +01:00
|
|
|
})
|
|
|
|
]);
|
|
|
|
}
|