summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch
diff options
context:
space:
mode:
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch')
-rw-r--r--krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch b/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch
deleted file mode 100644
index 6937c55b3..000000000
--- a/krebs/5pkgs/simple/flameshot-once/flameshot/flameshot-12.applauncher.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/src/tools/launcher/applauncherwidget.cpp b/src/tools/launcher/applauncherwidget.cpp
-index 8a202c89..7427aeb9 100644
---- a/src/tools/launcher/applauncherwidget.cpp
-+++ b/src/tools/launcher/applauncherwidget.cpp
-@@ -20,6 +20,7 @@
- #include <QProcess>
- #include <QStandardPaths>
- #include <QTabWidget>
-+#include <stdlib.h>
-
- namespace {
- #if defined(Q_OS_WIN)
-@@ -66,7 +67,12 @@ AppLauncherWidget::AppLauncherWidget(const QPixmap& p, QWidget* parent)
- QDir appsDirLocal(dirLocal);
- m_parser.processDirectory(appsDirLocal);
-
-- QString dir = QStringLiteral("/usr/share/applications/");
-+ const char *USER = secure_getenv("USER");
-+ QString dirUser = "/etc/profiles/per-user/" + QString::fromUtf8(USER) + "/share/applications/";
-+ QDir appsDirUser(dirUser);
-+ m_parser.processDirectory(appsDirUser);
-+
-+ QString dir = QStringLiteral("/run/current-system/sw/share/applications/");
- QDir appsDir(dir);
- m_parser.processDirectory(appsDir);
- #endif