Files
zigfetch/src/windows/windows.zig
2025-02-23 16:55:11 +01:00

7 lines
185 B
Zig

const std = @import("std");
pub fn getUsername(allocator: std.mem.Allocator) ![]u8 {
const username = try std.process.getEnvVarOwned(allocator, "USERNAME");
return username;
}