aboutsummaryrefslogtreecommitdiff
path: root/src/wallpaper.hpp
blob: 8017d65d803a296d4768cb28f1abf0705b8dd731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef WANDA_WALLPAPER_HPP
#define WANDA_WALLPAPER_HPP

#include <spdlog/spdlog.h>
#include <spdlog/sinks/null_sink.h>

#include <filesystem>
#include <memory>

namespace wanda
{

void set_wallpaper(std::filesystem::path wallpaper, std::shared_ptr<spdlog::logger> logger);

} // wanda


#endif