2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.random-background;
|
|
|
|
|
|
|
|
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 = {
|
|
|
|
enable = mkEnableOption "random desktop background";
|
|
|
|
|
|
|
|
imageDirectory = mkOption {
|
|
|
|
type = types.str;
|
2019-03-24 15:26:54 +01:00
|
|
|
example = "%h/backgrounds";
|
|
|
|
description = ''
|
|
|
|
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";
|
|
|
|
description = "Display background images according to this option.";
|
|
|
|
};
|
|
|
|
|
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";
|
2017-01-07 19:16:26 +01:00
|
|
|
description = ''
|
|
|
|
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
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable (
|
|
|
|
mkMerge ([
|
|
|
|
{
|
|
|
|
systemd.user.services.random-background = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Set random desktop background using feh";
|
2017-06-26 18:34:09 +02:00
|
|
|
After = [ "graphical-session-pre.target" ];
|
|
|
|
PartOf = [ "graphical-session.target" ];
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Service = {
|
|
|
|
Type = "oneshot";
|
2019-05-29 20:01:04 +02:00
|
|
|
ExecStart = "${pkgs.feh}/bin/feh --randomize --bg-${cfg.display} ${cfg.imageDirectory}";
|
2017-01-07 19:16:26 +01:00
|
|
|
IOSchedulingClass = "idle";
|
|
|
|
};
|
|
|
|
|
|
|
|
Install = {
|
2017-01-09 22:45:42 +01:00
|
|
|
WantedBy = [ "graphical-session.target" ];
|
2017-01-07 19:16:26 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
(mkIf (cfg.interval != null) {
|
|
|
|
systemd.user.timers.random-background = {
|
|
|
|
Unit = {
|
|
|
|
Description = "Set random desktop background using feh";
|
|
|
|
};
|
|
|
|
|
|
|
|
Timer = {
|
|
|
|
OnUnitActiveSec = cfg.interval;
|
|
|
|
};
|
|
|
|
|
|
|
|
Install = {
|
|
|
|
WantedBy = [ "timers.target" ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})
|
|
|
|
]));
|
|
|
|
}
|