1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Merge pull request #2409 from matttbe:autostart_dir

Autorun:xdg: create autostart dir if needed

fixes #2332
This commit is contained in:
Zetok Zalbavar 2015-10-17 15:28:36 +01:00
commit 4c383a624e
No known key found for this signature in database
GPG Key ID: C953D3880212068A

View File

@ -26,14 +26,19 @@
namespace Platform
{
QString getAutostartFilePath()
QString getAutostartDirPath()
{
QProcessEnvironment env = QProcessEnvironment::systemEnvironment();
QString config = env.value("XDG_CONFIG_HOME");
if (config.isEmpty())
config = QDir::homePath() + "/" + ".config";
return config + "/" + "autostart/qTox - " +
Settings::getInstance().getCurrentProfile() + ".desktop";
return config + "/autostart";
}
QString getAutostartFilePath(QString dir)
{
return dir + "/qTox - " + Settings::getInstance().getCurrentProfile() +
".desktop";
}
inline QString currentCommandLine()
@ -45,11 +50,12 @@ namespace Platform
bool Platform::setAutorun(bool on)
{
QFile desktop(getAutostartFilePath());
QString dirPath = getAutostartDirPath();
QFile desktop(getAutostartFilePath(dirPath));
if (on)
{
if (!desktop.open(QFile::WriteOnly | QFile::Truncate))
if (!QDir().mkpath(dirPath) ||
!desktop.open(QFile::WriteOnly | QFile::Truncate))
return false;
desktop.write("[Desktop Entry]\n");
desktop.write("Type=Application\n");
@ -66,7 +72,7 @@ bool Platform::setAutorun(bool on)
bool Platform::getAutorun()
{
return QFile(getAutostartFilePath()).exists();
return QFile(getAutostartFilePath(getAutostartDirPath())).exists();
}
#endif // defined(Q_OS_UNIX) && !defined(__APPLE__) && !defined(__MACH__)