aboutsummaryrefslogtreecommitdiff
path: root/source/include/wanda/wallpaper.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/include/wanda/wallpaper.hpp')
-rw-r--r--source/include/wanda/wallpaper.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/include/wanda/wallpaper.hpp b/source/include/wanda/wallpaper.hpp
new file mode 100644
index 0000000..0cad473
--- /dev/null
+++ b/source/include/wanda/wallpaper.hpp
@@ -0,0 +1,24 @@
+/**
+ * @file wallpaper.hpp
+ * @author Felix Morgner (felix.morgner@gmail.com)
+ * @since 1.0.0
+ */
+
+#ifndef WANDA_WALLPAPER_HPP
+#define WANDA_WALLPAPER_HPP
+
+#include <spdlog/sinks/null_sink.h>
+#include <spdlog/spdlog.h>
+
+#include <filesystem>
+#include <memory>
+
+namespace wanda
+{
+ /**
+ * @brief Set the wallpaper to the file specified by the given path
+ */
+ void set_wallpaper(std::filesystem::path wallpaper);
+} // namespace wanda
+
+#endif \ No newline at end of file