63 lines
2.4 KiB
TypeScript
63 lines
2.4 KiB
TypeScript
import { ResultWidget, ResultWidgetProps } from "../../widget/runner/ResultWidget";
|
|
import { Runner } from "../Runner";
|
|
import { Notifications } from "../../scripts/notifications";
|
|
|
|
import GLib from "gi://GLib?version=2.0";
|
|
import Gio from "gi://Gio?version=2.0";
|
|
|
|
|
|
export const PluginShell = (() => {
|
|
|
|
const shell = GLib.getenv("SHELL") ?? "/bin/sh";
|
|
const procLauncher = Gio.SubprocessLauncher.new(
|
|
Gio.SubprocessFlags.STDOUT_PIPE | Gio.SubprocessFlags.STDERR_PIPE);
|
|
|
|
procLauncher.set_cwd(GLib.get_home_dir());
|
|
|
|
return {
|
|
prefix: '!',
|
|
prioritize: true,
|
|
handle: (input: string): ResultWidget => {
|
|
let showOutputNotif: boolean = false;
|
|
if(input.startsWith('!')) {
|
|
input = input.replace('!', "");
|
|
showOutputNotif = true;
|
|
}
|
|
|
|
const command = input ? GLib.shell_parse_argv(input) : undefined;
|
|
|
|
return new ResultWidget({
|
|
onClick: () => {
|
|
if(!command || !command[0]) return;
|
|
|
|
const proc = procLauncher.spawnv([ shell, "-c", `${input}` ]);
|
|
proc.communicate_utf8_async(null, null, (_, asyncResult) => {
|
|
const [ success, stdout, stderr ] = proc.communicate_utf8_finish(asyncResult);
|
|
|
|
if(!success || stderr) {
|
|
Notifications.getDefault().sendNotification({
|
|
appName: shell,
|
|
summary: "Command error",
|
|
body: `An error occurred on \`${input}\`. Stderr: ${stderr}`
|
|
});
|
|
|
|
return;
|
|
}
|
|
|
|
if(!showOutputNotif) return;
|
|
|
|
Notifications.getDefault().sendNotification({
|
|
appName: shell,
|
|
summary: "Command output",
|
|
body: stdout
|
|
});
|
|
});
|
|
},
|
|
title: `Run ${input ? ` \`${input}\`` : `with ${shell.split('/')[shell.split('/').length-1]}`}`,
|
|
description: (input || showOutputNotif) && `${input ? `${shell}\t` : ""}${ showOutputNotif ? "(showing output on notification)" : "" }`,
|
|
icon: "utilities-terminal-symbolic"
|
|
} as ResultWidgetProps)
|
|
}
|
|
} as Runner.Plugin
|
|
})();
|