summaryrefslogtreecommitdiff
path: root/src/lib/xdgautostart.h
blob: fc6c02dd6b5e2d32b1b68cf8f1a029102d919f6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef XDGAUTOSTART_H
#define XDGAUTOSTART_H

#include <QObject>
#include "xdgentries.h"


namespace xdg {
    class AutoStart : public QObject
    {
        Q_OBJECT
    public:
        explicit AutoStart(QObject *parent = nullptr);
        xdg::Entries m_entries;

    public slots:
        void start(QString key = QString(), QString value = QString());

    signals:

    };
}

#endif // XDGAUTOSTART_H