diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-02-09 19:35:15 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-02-10 17:04:31 +0100 |
commit | d088586296f6bba924b0cc65676dd7da4558fbdc (patch) | |
tree | 10a04f7dedd5889de4f8ccad86048200bb29c65a /src/main.cpp | |
parent | ddc3871b27fe9fc086453e3c61b96ae4783e4035 (diff) |
Make plasmashell check work in flatpak
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 6a8d0c4..64f8952 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3007,7 +3007,14 @@ static AudioDeviceData create_application_audio_audio_input(const MergedAudioInp #endif static bool is_kde_plasma_version_greater_than_6_1_90() { - FILE *f = popen("plasmashell -v 2> /dev/null", "r"); + const bool inside_flatpak = getenv("FLATPAK_ID") != NULL; + const char *cmd = nullptr; + if(inside_flatpak) + cmd = "flatpak-spawn --host -- plasmashell -v 2> /dev/null"; + else + cmd = "plasmashell -v 2> /dev/null"; + + FILE *f = popen(cmd, "r"); if(!f) return false; |