blob: 215f17fe1e5fe1ba69ca3683bb7f6ef46e9adc14 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
const c = @import("../c.zig");
const Arg = @import("../command.zig").Arg;
const Seat = @import("../seat.zig");
/// Exit the compositor, terminating the wayland session.
pub fn exitCompositor(seat: *Seat, arg: Arg) void {
c.wl_display_terminate(seat.input_manager.server.wl_display);
}
|