mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
82 lines
3.3 KiB
Zig
82 lines
3.3 KiB
Zig
const std = @import("std");
|
|
const build_options = @import("build_options");
|
|
const Allocator = std.mem.Allocator;
|
|
const builtin = @import("builtin");
|
|
const build_config = @import("../build_config.zig");
|
|
const internal_os = @import("../os/main.zig");
|
|
const xev = @import("xev");
|
|
const renderer = @import("../renderer.zig");
|
|
const gtk = if (build_config.app_runtime == .gtk) @import("../apprt/gtk/c.zig").c else void;
|
|
|
|
pub const Options = struct {};
|
|
|
|
/// The `version` command is used to display information about Ghostty.
|
|
pub fn run(alloc: Allocator) !u8 {
|
|
_ = alloc;
|
|
|
|
const stdout = std.io.getStdOut().writer();
|
|
const tty = std.io.getStdOut().isTty();
|
|
|
|
if (tty) if (build_config.version.build) |commit_hash| {
|
|
try stdout.print(
|
|
"\x1b]8;;https://github.com/ghostty-org/ghostty/commit/{s}\x1b\\",
|
|
.{commit_hash},
|
|
);
|
|
};
|
|
try stdout.print("Ghostty {s}\n\n", .{build_config.version_string});
|
|
if (tty) try stdout.print("\x1b]8;;\x1b\\", .{});
|
|
|
|
try stdout.print("Version\n", .{});
|
|
try stdout.print(" - version: {s}\n", .{build_config.version_string});
|
|
try stdout.print(" - channel: {s}\n", .{@tagName(build_config.release_channel)});
|
|
|
|
try stdout.print("Build Config\n", .{});
|
|
try stdout.print(" - Zig version: {s}\n", .{builtin.zig_version_string});
|
|
try stdout.print(" - build mode : {}\n", .{builtin.mode});
|
|
try stdout.print(" - app runtime: {}\n", .{build_config.app_runtime});
|
|
try stdout.print(" - font engine: {}\n", .{build_config.font_backend});
|
|
try stdout.print(" - renderer : {}\n", .{renderer.Renderer});
|
|
try stdout.print(" - libxev : {}\n", .{xev.backend});
|
|
if (comptime build_config.app_runtime == .gtk) {
|
|
try stdout.print(" - desktop env: {s}\n", .{@tagName(internal_os.desktopEnvironment())});
|
|
try stdout.print(" - GTK version:\n", .{});
|
|
try stdout.print(" build : {d}.{d}.{d}\n", .{
|
|
gtk.GTK_MAJOR_VERSION,
|
|
gtk.GTK_MINOR_VERSION,
|
|
gtk.GTK_MICRO_VERSION,
|
|
});
|
|
try stdout.print(" runtime : {d}.{d}.{d}\n", .{
|
|
gtk.gtk_get_major_version(),
|
|
gtk.gtk_get_minor_version(),
|
|
gtk.gtk_get_micro_version(),
|
|
});
|
|
if (comptime build_options.adwaita) {
|
|
try stdout.print(" - libadwaita : enabled\n", .{});
|
|
try stdout.print(" build : {s}\n", .{
|
|
gtk.ADW_VERSION_S,
|
|
});
|
|
try stdout.print(" runtime : {}.{}.{}\n", .{
|
|
gtk.adw_get_major_version(),
|
|
gtk.adw_get_minor_version(),
|
|
gtk.adw_get_micro_version(),
|
|
});
|
|
} else {
|
|
try stdout.print(" - libadwaita : disabled\n", .{});
|
|
}
|
|
if (comptime build_options.x11) {
|
|
try stdout.print(" - libX11 : enabled\n", .{});
|
|
} else {
|
|
try stdout.print(" - libX11 : disabled\n", .{});
|
|
}
|
|
|
|
// We say `libwayland` since it is possible to build Ghostty without
|
|
// Wayland integration but with Wayland-enabled GTK
|
|
if (comptime build_options.wayland) {
|
|
try stdout.print(" - libwayland : enabled\n", .{});
|
|
} else {
|
|
try stdout.print(" - libwayland : disabled\n", .{});
|
|
}
|
|
}
|
|
return 0;
|
|
}
|