aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/debug/CrashReporter.cpp2
-rw-r--r--src/debug/HyprCtl.cpp2
-rw-r--r--src/helpers/MiscFunctions.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/CrashReporter.cpp b/src/debug/CrashReporter.cpp
index 7072de81..bddc04be 100644
--- a/src/debug/CrashReporter.cpp
+++ b/src/debug/CrashReporter.cpp
@@ -161,7 +161,7 @@ void NCrashReporter::createAndSaveCrash(int sig) {
#if defined(__DragonFly__) || defined(__FreeBSD__)
finalCrashReport.writeCmdOutput("pciconf -lv | grep -F -A4 vga");
#else
- finalCrashReport.writeCmdOutput("lspci -vnn | grep -E (VGA|Display|3D)");
+ finalCrashReport.writeCmdOutput("lspci -vnn | grep -E '(VGA|Display|3D)'");
#endif
finalCrashReport += "\n\nos-release:\n";
diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp
index d315990f..2d17b2ae 100644
--- a/src/debug/HyprCtl.cpp
+++ b/src/debug/HyprCtl.cpp
@@ -976,7 +976,7 @@ std::string systemInfoRequest(eHyprCtlOutputFormat format, std::string request)
}
} catch (...) { GPUINFO = "error"; }
#else
- const std::string GPUINFO = execAndGet("lspci -vnn | grep -E (VGA|Display|3D)");
+ const std::string GPUINFO = execAndGet("lspci -vnn | grep -E '(VGA|Display|3D)'");
#endif
result += "GPU information: \n" + GPUINFO;
if (GPUINFO.contains("NVIDIA") && std::filesystem::exists("/proc/driver/nvidia/version")) {
diff --git a/src/helpers/MiscFunctions.cpp b/src/helpers/MiscFunctions.cpp
index b29ad6aa..e970b781 100644
--- a/src/helpers/MiscFunctions.cpp
+++ b/src/helpers/MiscFunctions.cpp
@@ -608,7 +608,7 @@ void logSystemInfo() {
}
} catch (...) { GPUINFO = "error"; }
#else
- const std::string GPUINFO = execAndGet("lspci -vnn | grep -E (VGA|Display|3D)");
+ const std::string GPUINFO = execAndGet("lspci -vnn | grep -E '(VGA|Display|3D)'");
#endif
Debug::log(LOG, "GPU information:\n{}\n", GPUINFO);