diff options
author | lassulus <lassulus@lassul.us> | 2018-11-27 00:58:57 +0100 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2018-11-27 00:58:57 +0100 |
commit | 593b2baf031dac70bff4d0484f87b28d674ccbed (patch) | |
tree | c24b6d46a78c1a0adf01a522eea6bcf53fa15c0d /krebs/3modules/fetchWallpaper.nix | |
parent | 09ee7ca4d832bfdc836c9463513891f1e97db10b (diff) |
fetchWallpaper: remove broken maxTime
Diffstat (limited to 'krebs/3modules/fetchWallpaper.nix')
-rw-r--r-- | krebs/3modules/fetchWallpaper.nix | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/krebs/3modules/fetchWallpaper.nix b/krebs/3modules/fetchWallpaper.nix index f67188122..5a5065565 100644 --- a/krebs/3modules/fetchWallpaper.nix +++ b/krebs/3modules/fetchWallpaper.nix @@ -38,11 +38,6 @@ let ''; default = {}; }; - maxTime = mkOption { - type = types.int; - default = 0; - description = "Time to wait before download is aborted"; - }; }; fetchWallpaperScript = pkgs.writeDash "fetchWallpaper" '' @@ -51,8 +46,8 @@ let mkdir -p ${cfg.stateDir} chmod o+rx ${cfg.stateDir} cd ${cfg.stateDir} - (curl --max-time ${toString cfg.maxTime} -s -o wallpaper.tmp -z wallpaper.tmp ${shell.escape cfg.url} && cp wallpaper.tmp wallpaper) || : - feh --no-fehbg --bg-scale ${shell.escape cfg.stateDir}/wallpaper + (curl -s -o wallpaper.tmp -z wallpaper.tmp ${shell.escape cfg.url} && cp wallpaper.tmp wallpaper) || : + feh --no-fehbg --bg-scale wallpaper ''; imp = { |