2022-09-02 18:06:00 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "debug/Log.hpp"
|
|
|
|
|
#include "includes.hpp"
|
|
|
|
|
#include "helpers/Monitor.hpp"
|
2022-09-02 19:39:47 +02:00
|
|
|
#include "helpers/Color.hpp"
|
2022-11-19 16:53:05 +02:00
|
|
|
#include "clipboard/Clipboard.hpp"
|
2025-06-10 19:39:45 +03:00
|
|
|
#include "notify/Notify.hpp"
|
2022-09-02 18:06:00 +02:00
|
|
|
|
|
|
|
|
// git stuff
|
|
|
|
|
#ifndef GIT_COMMIT_HASH
|
|
|
|
|
#define GIT_COMMIT_HASH "?"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef GIT_BRANCH
|
|
|
|
|
#define GIT_BRANCH "?"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef GIT_COMMIT_MESSAGE
|
|
|
|
|
#define GIT_COMMIT_MESSAGE "?"
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef GIT_DIRTY
|
|
|
|
|
#define GIT_DIRTY "?"
|
2023-06-21 13:19:37 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
2024-07-17 17:08:10 +02:00
|
|
|
|
|
|
|
|
#include <hyprutils/math/Vector2D.hpp>
|
|
|
|
|
using namespace Hyprutils::Math;
|