added process spawning

This commit is contained in:
Harrison DiAmbrosio 2025-10-24 23:43:11 -04:00
parent 23ef0049f7
commit 2e2cfeebae
5 changed files with 47 additions and 249 deletions

View file

@ -1,7 +1,6 @@
const Api = @This();
const std = @import("std");
const server = &@import("../main.zig").server;
const Keymap = @import("../keymap.zig");
const zlua = @import("zlua");
@ -9,9 +8,12 @@ const xkb = @import("xkbcommon");
const wlr = @import("wlroots");
const gpa = std.heap.c_allocator;
const server = &@import("../main.zig").server;
const env_map = &@import("../main.zig").env_map;
pub fn add_keymap(L: *zlua.Lua) i32 {
const nargs: i32 = L.getTop();
if (nargs < 3) {
L.raiseErrorStr("Expected at least three arguments", .{});
return 0;
@ -23,6 +25,9 @@ pub fn add_keymap(L: *zlua.Lua) i32 {
L.checkType(3, .function);
var keymap: Keymap = undefined;
keymap.options = .{
.on_release = false,
};
const mod = L.toString(1) catch {
L.raiseErrorStr("Lua error check your config", .{});
@ -89,3 +94,27 @@ pub fn get_keybind(L: *zlua.Lua) i32 {
_ = L;
return 0;
}
pub fn spawn(L: *zlua.Lua) i32 {
const nargs: i32 = L.getTop();
if (nargs < 1) {
L.raiseErrorStr("Expected at least one arguments", .{});
return 0;
}
L.checkType(1, .string);
const cmd = L.toString(1) catch {
L.raiseErrorStr("Lua error check your config", .{});
return 0;
};
var child = std.process.Child.init(&[_][]const u8{ "/bin/sh", "-c", cmd }, gpa);
child.env_map = env_map;
child.spawn() catch {
std.log.err("Unable to spawn process \"{s}\"", .{cmd});
};
return 0;
}