diff options
author | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-25 12:13:31 +0200 |
---|---|---|
committer | Fabien Proriol <fabien.proriol@kazoe.org> | 2025-05-25 12:13:31 +0200 |
commit | 1dbc0e3c88ba271ba35bc3f82e7864c4f35e1236 (patch) | |
tree | 8c491cd196e2eff4c59f8c23f566f7ff26981586 /src/lib/xdgautostart.h |
Initial Commit
Diffstat (limited to 'src/lib/xdgautostart.h')
-rw-r--r-- | src/lib/xdgautostart.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/lib/xdgautostart.h b/src/lib/xdgautostart.h new file mode 100644 index 0000000..fc6c02d --- /dev/null +++ b/src/lib/xdgautostart.h @@ -0,0 +1,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 |