Initial commit

This commit is contained in:
Joshua Higgins
2026-02-06 15:02:13 -05:00
commit 4980ef15a5
43 changed files with 5123 additions and 0 deletions

16
src/warp-window-south.ts Normal file
View File

@@ -0,0 +1,16 @@
import { runYabaiCommand } from "./helpers/scripts";
import { showFailureToast } from "@raycast/utils";
export default async function Command() {
try {
const { stderr } = await runYabaiCommand("-m window --warp south");
if (stderr) {
throw new Error(stderr);
}
} catch (error) {
showFailureToast(error, {
title: "Failed to warp window.",
});
}
}