blob: 0cad473b6259cab4f9ecb3224980247463c40c66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
|