aboutsummaryrefslogtreecommitdiff
path: root/include/CursorTrackerX11.hpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-05-03 12:03:43 +0200
committerdec05eba <dec05eba@protonmail.com>2025-05-03 12:03:43 +0200
commitd08ea692771caa8e385412c2f992089672773e30 (patch)
tree994c05673d90b130e25d8bc25c6c365f607134db /include/CursorTrackerX11.hpp
parent180a3b73dbab2f586c53f9e5f044ab88aca95014 (diff)
Keep keyboard led when turning on global hotkeys, move files
Diffstat (limited to 'include/CursorTrackerX11.hpp')
-rw-r--r--include/CursorTrackerX11.hpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/include/CursorTrackerX11.hpp b/include/CursorTrackerX11.hpp
deleted file mode 100644
index 66618c4..0000000
--- a/include/CursorTrackerX11.hpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#pragma once
-
-#include "CursorTracker.hpp"
-
-typedef struct _XDisplay Display;
-
-namespace gsr {
- class CursorTrackerX11 : public CursorTracker {
- public:
- CursorTrackerX11(Display *dpy);
- CursorTrackerX11(const CursorTrackerX11&) = delete;
- CursorTrackerX11& operator=(const CursorTrackerX11&) = delete;
- ~CursorTrackerX11() = default;
-
- void update() override {}
- std::optional<CursorInfo> get_latest_cursor_info() override;
- private:
- Display *dpy = nullptr;
- };
-} \ No newline at end of file