-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwallpapers.nix
66 lines (66 loc) · 1.81 KB
/
wallpapers.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
lib,
config,
pkgs,
...
}: let
cfg = config.xsession.wallpapers;
in {
options.xsession.wallpapers = {
enable = lib.mkEnableOption "automatically refreshing randomly selected wallpapers";
script = let
exe =
pkgs.writeShellScript "set-wallpaper"
''
${pkgs.feh}/bin/feh --no-fehbg --bg-fill --randomize \
$( ${pkgs.findutils}/bin/find ${config.home.homeDirectory}/${cfg.folder} \( -iname "*.png" -or -iname "*.jpg" \) )
'';
in
lib.mkOption {
description = "The script which will be called to set new wallpapers";
default = exe;
type = lib.types.package;
};
folder = lib.mkOption {
description = "The folder from which the wallpapers are selected. Relative to home directory";
type = lib.types.str;
default = ".local/share/wallpapers";
};
refreshInterval = lib.mkOption {
description = "How often new wallpapers are drawn. Used as a Systemd timer interval.";
type = lib.types.str;
default = "3 min";
};
};
config = lib.mkIf cfg.enable {
systemd.user = {
timers = {
set-wallpaper = {
Unit = {
Description = "Set a random wallpaper every 3 minutes";
};
Timer = {
OnUnitActiveSec = cfg.refreshInterval;
};
Install.WantedBy = [
"timers.target"
];
};
};
services = {
set-wallpaper = {
Unit = {
Description = "Set a random wallpaper on all X displays";
};
Service = {
Type = "oneshot";
ExecStart =
cfg.script;
};
Install.WantedBy = ["graphical-session.target"];
};
};
};
home.persistence."/state".directories = [cfg.folder];
};
}