pollymc/launcher/Flatpak.cpp

15 lines
218 B
C++
Raw Normal View History

2022-03-27 16:13:49 +05:30
#include <QFileInfo>
namespace Flatpak
{
bool IsFlatpak()
{
#ifdef Q_OS_LINUX
QFileInfo check_file("/.flatpak-info");
return check_file.exists();
#else
return false;
#endif
}
}