Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
918 B
Diff
23 lines
918 B
Diff
diff --git a/kded/config_editor/xsettings.cpp b/kded/config_editor/xsettings.cpp
|
|
index 1f9fe5b..9824973 100644
|
|
--- a/kded/config_editor/xsettings.cpp
|
|
+++ b/kded/config_editor/xsettings.cpp
|
|
@@ -46,7 +46,7 @@ void replaceValueInXSettingsdContents(QString &xSettingsdContents, const QString
|
|
pid_t pidOfXSettingsd()
|
|
{
|
|
QProcess pgrep;
|
|
- pgrep.start(QStringLiteral("pgrep"),
|
|
+ pgrep.start(QStringLiteral("@pgrep@"),
|
|
QStringList{
|
|
QStringLiteral("-u"),
|
|
QString::number(getuid()),
|
|
@@ -67,7 +67,7 @@ reloadXSettingsd(void *)
|
|
{
|
|
pid_t xSettingsdPid = pidOfXSettingsd();
|
|
if (xSettingsdPid == 0) {
|
|
- QProcess::startDetached(QStandardPaths::findExecutable(QStringLiteral("xsettingsd")), QStringList());
|
|
+ QProcess::startDetached(QStringLiteral("@xsettingsd@"), QStringList());
|
|
} else {
|
|
kill(xSettingsdPid, SIGHUP);
|
|
}
|