mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-12 21:42:58 +01:00
update scripts to latest zig
This commit is contained in:
parent
f182e76912
commit
77ad088445
2 changed files with 2 additions and 2 deletions
|
@ -146,7 +146,7 @@ pub fn populateEnvironment(env: *std.process.EnvMap) !bool {
|
|||
// racket bins
|
||||
racket: {
|
||||
try msg("acquiring racket binary path...", .{});
|
||||
const res = std.ChildProcess.exec(.{
|
||||
const res = std.process.Child.run(.{
|
||||
.allocator = alloc,
|
||||
.argv = &.{
|
||||
"racket",
|
||||
|
|
|
@ -60,7 +60,7 @@ fn walkLocalWps(walker: *Walker, home_s: []const u8) !void {
|
|||
}
|
||||
|
||||
fn setWallpapersSwww(alloc: std.mem.Allocator, wps: []const []const u8) !u8 {
|
||||
const exec_res = try std.process.Child.exec(.{
|
||||
const exec_res = try std.process.Child.run(.{
|
||||
.allocator = alloc,
|
||||
.argv = &.{ "swww", "query" },
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue