working timer

This commit is contained in:
2026-02-07 21:16:35 +01:00
parent ff2d0afd9b
commit 6be70a7d93
14 changed files with 456 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
#pragma once
#include <gtk4-layer-shell/gtk4-layer-shell.h>
#include <gtkmm.h>
#include <string>
class WallpaperWindow : public Gtk::Window {
public:
WallpaperWindow(GdkMonitor *monitor, const std::string &imagePath);
private:
Gtk::Picture picture;
static std::string expand_user_path(const std::string &path);
static Glib::RefPtr<Gdk::Texture> load_texture(const std::string &path);
};