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

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

#include <filesystem>
#include <memory>

namespace wanda
{
  void set_wallpaper(std::filesystem::path wallpaper);
}  // namespace wanda

#endif