mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-01-01 19:22:13 +00:00
Introduces host resources directory as a new concept: A directory containing application resources that can only be accessed from the host operating system. This is significant for sandboxed application runtimes like Flatpak where shells spawned on the host should have access to application resources to enable integrations. Alongside this, apprt is now allowed to override the resources lookup logic.
13 lines
325 B
Zig
13 lines
325 B
Zig
//! Application runtime that uses GTK4.
|
|
|
|
pub const App = @import("gtk/App.zig");
|
|
pub const Surface = @import("gtk/Surface.zig");
|
|
pub const resourcesDir = @import("gtk/flatpak.zig").resourcesDir;
|
|
|
|
test {
|
|
@import("std").testing.refAllDecls(@This());
|
|
|
|
_ = @import("gtk/inspector.zig");
|
|
_ = @import("gtk/key.zig");
|
|
}
|