From 1dbc0e3c88ba271ba35bc3f82e7864c4f35e1236 Mon Sep 17 00:00:00 2001 From: Fabien Proriol Date: Sun, 25 May 2025 12:13:31 +0200 Subject: Initial Commit --- src/lib/xdgautostart.h | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 src/lib/xdgautostart.h (limited to 'src/lib/xdgautostart.h') 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 +#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 -- cgit v1.2.3