zed/script/zed-local

87 lines
2.5 KiB
Text
Raw Normal View History

#!/usr/bin/env node
2023-12-15 21:27:58 +00:00
const { spawn, execFileSync } = require("child_process");
2023-12-15 21:27:58 +00:00
const RESOLUTION_REGEX = /(\d+) x (\d+)/;
const DIGIT_FLAG_REGEX = /^--?(\d+)$/;
const ZED_2_MODE = "--zed2";
2023-12-15 21:27:58 +00:00
const args = process.argv.slice(2);
// Parse the number of Zed instances to spawn.
2023-12-15 21:27:58 +00:00
let instanceCount = 1;
const digitMatch = args[0]?.match(DIGIT_FLAG_REGEX);
if (digitMatch) {
2023-12-15 21:27:58 +00:00
instanceCount = parseInt(digitMatch[1]);
args.shift();
}
2023-12-15 21:27:58 +00:00
const isZed2 = args.some((arg) => arg === ZED_2_MODE);
if (instanceCount > 4) {
2023-12-15 21:27:58 +00:00
throw new Error("Cannot spawn more than 4 instances");
}
// Parse the resolution of the main screen
const displayInfo = JSON.parse(
2023-12-15 21:27:58 +00:00
execFileSync("system_profiler", ["SPDisplaysDataType", "-json"], {
encoding: "utf8",
}),
);
const mainDisplayResolution =
displayInfo?.SPDisplaysDataType[0]?.spdisplays_ndrvs
?.find((entry) => entry.spdisplays_main === "spdisplays_yes")
?._spdisplays_resolution?.match(RESOLUTION_REGEX);
if (!mainDisplayResolution) {
2023-12-15 21:27:58 +00:00
throw new Error("Could not parse screen resolution");
}
2023-12-15 21:27:58 +00:00
const screenWidth = parseInt(mainDisplayResolution[1]);
const screenHeight = parseInt(mainDisplayResolution[2]);
// Determine the window size for each instance
2023-12-15 21:27:58 +00:00
let instanceWidth = screenWidth;
let instanceHeight = screenHeight;
if (instanceCount > 1) {
2023-12-15 21:27:58 +00:00
instanceWidth = Math.floor(screenWidth / 2);
if (instanceCount > 2) {
2023-12-15 21:27:58 +00:00
instanceHeight = Math.floor(screenHeight / 2);
}
}
2023-12-15 21:27:58 +00:00
let users = ["nathansobo", "as-cii", "maxbrunsfeld", "iamnbutler"];
2023-12-15 21:27:58 +00:00
const RUST_LOG = process.env.RUST_LOG || "info";
// If a user is specified, make sure it's first in the list
2023-12-15 21:27:58 +00:00
const user = process.env.ZED_IMPERSONATE;
if (user) {
2023-12-15 21:27:58 +00:00
users = [user].concat(users.filter((u) => u !== user));
}
const positions = [
2023-12-15 21:27:58 +00:00
"0,0",
`${instanceWidth},0`,
`0,${instanceHeight}`,
2023-12-15 21:27:58 +00:00
`${instanceWidth},${instanceHeight}`,
];
2023-12-15 21:27:58 +00:00
const buildArgs = isZed2 ? ["build", "-p", "zed2"] : ["build"];
const zedBinary = isZed2 ? "target/debug/Zed2" : "target/debug/Zed";
execFileSync("cargo", buildArgs, { stdio: "inherit" });
setTimeout(() => {
for (let i = 0; i < instanceCount; i++) {
spawn(zedBinary, i == 0 ? args : [], {
2023-12-15 21:27:58 +00:00
stdio: "inherit",
env: {
ZED_IMPERSONATE: users[i],
ZED_WINDOW_POSITION: positions[i],
2023-12-15 21:27:58 +00:00
ZED_STATELESS: "1",
ZED_ALWAYS_ACTIVE: "1",
ZED_SERVER_URL: "http://localhost:8080",
ZED_ADMIN_API_TOKEN: "secret",
ZED_WINDOW_SIZE: `${instanceWidth},${instanceHeight}`,
2023-10-22 14:03:13 +00:00
PATH: process.env.PATH,
RUST_LOG,
2023-12-15 21:27:58 +00:00
},
});
}
2023-12-15 21:27:58 +00:00
}, 0.1);