mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-08-03 14:19:05 +00:00
19 lines
543 B
Zig
19 lines
543 B
Zig
const builtin = @import("builtin");
|
|
|
|
/// Base application ID
|
|
pub const base_application_id = "com.mitchellh.ghostty";
|
|
|
|
/// GTK application ID
|
|
pub const application_id = switch (builtin.mode) {
|
|
.Debug, .ReleaseSafe => base_application_id ++ "-debug",
|
|
.ReleaseFast, .ReleaseSmall => base_application_id,
|
|
};
|
|
|
|
pub const resource_path = "/com/mitchellh/ghostty";
|
|
|
|
/// GTK object path
|
|
pub const object_path = switch (builtin.mode) {
|
|
.Debug, .ReleaseSafe => resource_path ++ "_debug",
|
|
.ReleaseFast, .ReleaseSmall => resource_path,
|
|
};
|