| 115 | } |
| 116 | |
| 117 | QString AutostartManager::getAutostartPath() |
| 118 | { |
| 119 | QString path = QStandardPaths::writableLocation(QStandardPaths::GenericConfigLocation); |
| 120 | if(path.isEmpty()) |
| 121 | { |
| 122 | path = QString("%1/.config/").arg(QDir::homePath()); |
| 123 | } |
| 124 | |
| 125 | return QString("%1/autostart/%2").arg(path, DESKTOP_FILE); |
| 126 | } |