update to latest zig
This commit is contained in:
parent
404cbdd221
commit
ac13490410
3 changed files with 4 additions and 4 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -9,7 +9,7 @@
|
||||||
# Cheers!
|
# Cheers!
|
||||||
# -andrewrk
|
# -andrewrk
|
||||||
|
|
||||||
zig-cache/
|
.zig-cache/
|
||||||
zig-out/
|
zig-out/
|
||||||
/release/
|
/release/
|
||||||
/debug/
|
/debug/
|
||||||
|
|
|
@ -6,7 +6,7 @@ pub fn build(b: *std.Build) void {
|
||||||
|
|
||||||
const exe = b.addExecutable(.{
|
const exe = b.addExecutable(.{
|
||||||
.name = "statusbar",
|
.name = "statusbar",
|
||||||
.root_source_file = .{ .path = "src/main.zig" },
|
.root_source_file = b.path("src/main.zig"),
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
|
@ -22,7 +22,7 @@ pub fn build(b: *std.Build) void {
|
||||||
run_step.dependOn(&run_cmd.step);
|
run_step.dependOn(&run_cmd.step);
|
||||||
|
|
||||||
const exe_unit_tests = b.addTest(.{
|
const exe_unit_tests = b.addTest(.{
|
||||||
.root_source_file = .{ .path = "src/main.zig" },
|
.root_source_file = b.path("src/main.zig"),
|
||||||
.target = target,
|
.target = target,
|
||||||
.optimize = optimize,
|
.optimize = optimize,
|
||||||
});
|
});
|
||||||
|
|
|
@ -15,7 +15,7 @@ pub fn getBlock(module: *Module, allocator: std.mem.Allocator) !Module.Block {
|
||||||
_ = module;
|
_ = module;
|
||||||
// const self: *const Self = @fieldParentPtr("module", module);
|
// const self: *const Self = @fieldParentPtr("module", module);
|
||||||
|
|
||||||
const child = try std.ChildProcess.run(.{
|
const child = try std.process.Child.run(.{
|
||||||
.argv = &[_][]const u8{ "amixer", "sget", "Master" },
|
.argv = &[_][]const u8{ "amixer", "sget", "Master" },
|
||||||
.allocator = allocator,
|
.allocator = allocator,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue