hyprbars: fix include paths

This commit is contained in:
vaxerski 2023-05-01 02:57:48 +01:00
parent a6097426e6
commit 274b46c1f7
4 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
#include "barDeco.hpp"
#include <src/Compositor.hpp>
#include <src/Window.hpp>
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/Window.hpp>
#include "globals.hpp"

View File

@ -2,8 +2,8 @@
#define WLR_USE_UNSTABLE
#include <src/render/decorations/IHyprWindowDecoration.hpp>
#include <src/render/OpenGL.hpp>
#include <hyprland/src/render/decorations/IHyprWindowDecoration.hpp>
#include <hyprland/src/render/OpenGL.hpp>
#include "globals.hpp"
class CHyprBar : public IHyprWindowDecoration {

View File

@ -1,5 +1,5 @@
#pragma once
#include <src/plugins/PluginAPI.hpp>
#include <hyprland/src/plugins/PluginAPI.hpp>
inline HANDLE PHANDLE = nullptr;

View File

@ -3,9 +3,9 @@
#include <unistd.h>
#include <any>
#include <src/Compositor.hpp>
#include <src/Window.hpp>
#include <src/config/ConfigManager.hpp>
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/Window.hpp>
#include <hyprland/src/config/ConfigManager.hpp>
#include "barDeco.hpp"
#include "globals.hpp"