Skip to content

Commit

Permalink
home-manager/wallpaper: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Aug 10, 2024
1 parent a4eb801 commit 599cb37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions home-manager/desktop/x11/wallpaper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
Install.WantedBy = [ "graphical-session.target" ];

Service = with config.home-manager.desktop.theme.wallpaper; {
ExecStart = lib.concatStringsSep " " [
"${lib.getExe pkgs.feh}"
ExecStart = lib.escapeShellArgs [
(lib.getExe pkgs.feh)
"--no-fehbg"
"--bg-${scale}"
"${path}"
path
];
Type = "oneshot";
};
Expand Down

0 comments on commit 599cb37

Please sign in to comment.