/** * @file wallpaper.hpp * @author Felix Morgner (felix.morgner@gmail.com) * @since 1.0.0 */ #ifndef WANDA_WALLPAPER_HPP #define WANDA_WALLPAPER_HPP #include #include #include #include namespace wanda { /** * @brief Set the wallpaper to the file specified by the given path */ void set_wallpaper(std::filesystem::path wallpaper); } // namespace wanda #endif