--wip-- [skip ci]

This commit is contained in:
Filippo Berto 2025-09-08 11:36:45 +02:00
parent eea02abfcb
commit 762085707c
136 changed files with 261 additions and 261 deletions

View file

@ -0,0 +1,36 @@
{ pkgs, ... }:
let
update_time = "10m";
in
{
home.packages = [ pkgs.update-background ];
systemd.user.services."update-background" = {
Unit = {
Description = "Set random desktop background using feh";
After = [ "graphical-session.pre.target" ];
PartOf = [ "graphical-session.target" ];
RequiresMountsFor = [ "/home/bertof/Immagini" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
Type = "oneshot";
IOSchedulingClass = "idle";
ExecStart = "${pkgs.update-background}/bin/update-background";
};
};
systemd.user.timers."update-background" = {
Unit = {
Description = "Set random desktop background using feh";
};
Timer = {
OnUnitActiveSec = update_time;
};
Install = {
WantedBy = [ "timers.target" ];
};
};
}