mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-04 00:24:37 +02:00
15 lines
218 B
C++
15 lines
218 B
C++
#include <QFileInfo>
|
|
|
|
namespace Flatpak
|
|
{
|
|
bool IsFlatpak()
|
|
{
|
|
#ifdef Q_OS_LINUX
|
|
QFileInfo check_file("/.flatpak-info");
|
|
return check_file.exists();
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|
|
}
|