blob: 7965fb0e7d0203f917434c8c446f0555fc43bac6 (
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_SYSTEM_WALLPAPER_HPP
#define WANDA_SYSTEM_WALLPAPER_HPP
#include <spdlog/sinks/null_sink.h>
#include <spdlog/spdlog.h>
#include <filesystem>
#include <memory>
namespace wanda::system
{
/**
* @brief Set the wallpaper to the file specified by the given path
*/
void set_wallpaper(std::filesystem::path wallpaper);
} // namespace wanda::system
#endif
|