2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.random-background;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
flags = lib.concatStringsSep " "
|
|
|
|
([ "--bg-${cfg.display}" "--no-fehbg" "--randomize" ]
|
|
|
|
++ lib.optional (!cfg.enableXinerama) "--no-xinerama");
|
2019-08-26 14:11:42 +02:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2017-09-26 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
|
|
|
services.random-background = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "" // {
|
|
|
|
description = ''
|
2019-12-25 19:16:27 +01:00
|
|
|
Whether to enable random desktop background.
|
2023-07-01 09:48:09 +02:00
|
|
|
|
2019-12-25 19:16:27 +01:00
|
|
|
Note, if you are using NixOS and have set up a custom
|
|
|
|
desktop manager session for Home Manager, then the session
|
2023-07-01 09:48:09 +02:00
|
|
|
configuration must have the `bgSupport`
|
|
|
|
option set to `true` or the background
|
2019-12-25 19:16:27 +01:00
|
|
|
image set by this module may be overwritten.
|
|
|
|
'';
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
|
|
|
|
imageDirectory = mkOption {
|
|
|
|
type = types.str;
|
2019-03-24 15:26:54 +01:00
|
|
|
example = "%h/backgrounds";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-03-24 15:26:54 +01:00
|
|
|
The directory of images from which a background should be
|
|
|
|
chosen. Should be formatted in a way understood by systemd,
|
|
|
|
e.g., '%h' is the home directory.
|
|
|
|
'';
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
2019-05-29 20:01:04 +02:00
|
|
|
display = mkOption {
|
|
|
|
type = types.enum [ "center" "fill" "max" "scale" "tile" ];
|
|
|
|
default = "fill";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Display background images according to this option.";
|
2019-05-29 20:01:04 +02:00
|
|
|
};
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
interval = mkOption {
|
|
|
|
default = null;
|
|
|
|
type = types.nullOr types.str;
|
2019-03-24 15:26:54 +01:00
|
|
|
example = "1h";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2017-01-07 19:16:26 +01:00
|
|
|
The duration between changing background image, set to null
|
2019-03-24 15:26:54 +01:00
|
|
|
to only set background when logging in. Should be formatted
|
|
|
|
as a duration understood by systemd.
|
2017-01-07 19:16:26 +01:00
|
|
|
'';
|
|
|
|
};
|
2019-08-26 14:11:42 +02:00
|
|
|
|
|
|
|
enableXinerama = mkOption {
|
|
|
|
default = true;
|
|
|
|
type = types.bool;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2019-08-26 14:11:42 +02:00
|
|
|
Will place a separate image per screen when enabled,
|
|
|
|
otherwise a single image will be stretched across all
|
|
|
|
screens.
|
|
|
|
'';
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
config = mkIf cfg.enable (mkMerge ([
|
|
|
|
{
|
2022-04-24 16:25:54 +02:00
|
|
|
assertions = [
|
|
|
|
(hm.assertions.assertPlatform "services.random-background" pkgs
|
|
|
|
platforms.linux)
|
|
|
|
];
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
systemd.user.services.random-background = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Set random desktop background using feh";
|
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
|
|
|
};
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Service = {
|
|
|
|
Type = "oneshot";
|
|
|
|
ExecStart = "${pkgs.feh}/bin/feh ${flags} ${cfg.imageDirectory}";
|
|
|
|
IOSchedulingClass = "idle";
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "graphical-session.target" ]; };
|
|
|
|
};
|
|
|
|
}
|
|
|
|
(mkIf (cfg.interval != null) {
|
|
|
|
systemd.user.timers.random-background = {
|
|
|
|
Unit = { Description = "Set random desktop background using feh"; };
|
2017-01-07 19:16:26 +01:00
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
Timer = { OnUnitActiveSec = cfg.interval; };
|
|
|
|
|
|
|
|
Install = { WantedBy = [ "timers.target" ]; };
|
|
|
|
};
|
|
|
|
})
|
|
|
|
]));
|
2017-01-07 19:16:26 +01:00
|
|
|
}
|