mirror of
https://github.com/vale981/Hyprland
synced 2025-03-04 17:11:39 -05:00
parent
9e628067fc
commit
c10739e6e3
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@ using namespace Hyprutils::OS;
|
|||
static std::string execAndGet(std::string cmd) {
|
||||
cmd += " 2>&1";
|
||||
|
||||
CProcess proc("/bin/sh", {cmd});
|
||||
CProcess proc("/bin/sh", {"-c", cmd});
|
||||
|
||||
if (!proc.runSync())
|
||||
return "error";
|
||||
|
|
|
@ -585,7 +585,7 @@ float vecToRectDistanceSquared(const Vector2D& vec, const Vector2D& p1, const Ve
|
|||
|
||||
// Execute a shell command and get the output
|
||||
std::string execAndGet(const char* cmd) {
|
||||
CProcess proc("/bin/sh", {cmd});
|
||||
CProcess proc("/bin/sh", {"-c", cmd});
|
||||
|
||||
if (!proc.runSync())
|
||||
return "error";
|
||||
|
|
Loading…
Add table
Reference in a new issue