💥 runner(plugins/shell): use single quotes to run commands instead of normal quotes

This commit is contained in:
retrozinndev
2025-04-15 17:31:55 -03:00
parent 70f4cc9145
commit a15c0c53f0
+1 -1
View File
@@ -9,7 +9,7 @@ export const PluginShell = {
const shell = GLib.getenv("SHELL") || "/usr/bin/env sh"; const shell = GLib.getenv("SHELL") || "/usr/bin/env sh";
return new ResultWidget({ return new ResultWidget({
onClick: () => AstalHyprland.get_default().dispatch("exec", `${shell} -c "${command}"`), onClick: () => AstalHyprland.get_default().dispatch("exec", `${shell} -c '${command}'`),
title: `Run: \`${command}\``, title: `Run: \`${command}\``,
description: shell, description: shell,
icon: "utilities-terminal-symbolic" icon: "utilities-terminal-symbolic"