feat: add shell info

This commit is contained in:
utox39
2025-02-26 16:51:00 +01:00
parent c13601fca8
commit df64681803

View File

@@ -22,4 +22,8 @@ pub fn main() !void {
const uptime = try os_module.getSystemUptime();
try stdout.print("Uptime: {} days, {} hours, {} minutes\n", .{ uptime.days, uptime.hours, uptime.minutes });
try bw.flush();
const shell = try os_module.getShell(allocator);
try stdout.print("Shell: {s}", .{shell});
try bw.flush();
}