summaryrefslogtreecommitdiff
path: root/src/lib/xdgautostart.h
diff options
context:
space:
mode:
authorFabien Proriol <fabien.proriol@kazoe.org>2025-05-25 12:13:31 +0200
committerFabien Proriol <fabien.proriol@kazoe.org>2025-05-25 12:13:31 +0200
commit1dbc0e3c88ba271ba35bc3f82e7864c4f35e1236 (patch)
tree8c491cd196e2eff4c59f8c23f566f7ff26981586 /src/lib/xdgautostart.h
Initial Commit
Diffstat (limited to 'src/lib/xdgautostart.h')
-rw-r--r--src/lib/xdgautostart.h24
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