From f2ba812235b9ab6b5416424aa33eca56ed1fd184 Mon Sep 17 00:00:00 2001 From: LordMZTE Date: Sun, 2 Jan 2022 22:52:46 +0100 Subject: [PATCH] randomwallpaper uses zoom fill mode --- scripts/randomwallpaper.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/randomwallpaper.zig b/scripts/randomwallpaper.zig index 917a0a0..e6702a5 100644 --- a/scripts/randomwallpaper.zig +++ b/scripts/randomwallpaper.zig @@ -38,7 +38,7 @@ fn updateWallpapers(display: *Display, alloc: mem.Allocator) !void { var buf: [10]u8 = undefined; - const args = [_][]const u8{ "nitrogen", "--random", "--set-scaled", try std.fmt.bufPrint(&buf, "--head={}", .{i}) }; + const args = [_][]const u8{ "nitrogen", "--random", "--set-zoom-fill", try std.fmt.bufPrint(&buf, "--head={}", .{i}) }; var child = try std.ChildProcess.init(&args, alloc); try child.spawn();