| 8 | { |
| 9 | #ifdef Q_OS_LINUX |
| 10 | QString desktopFile() |
| 11 | { |
| 12 | auto name = QCoreApplication::applicationName().toLower(); |
| 13 | name.remove(QLatin1Char(' ')); |
| 14 | const auto result = QDir::homePath() + QLatin1String("/.config/autostart/") + |
| 15 | name + QLatin1String(".desktop"); |
| 16 | return result; |
| 17 | } |
| 18 | |
| 19 | bool RunAtSystemStart::isAvailable() |
| 20 | { |
no test coverage detected