mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
23 lines
389 B
C++
23 lines
389 B
C++
|
#pragma once
|
||
|
|
||
|
#include <fmt/format.h>
|
||
|
#include <sigc++/sigc++.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <sys/un.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
#include <cstring>
|
||
|
#include <fstream>
|
||
|
#include <memory>
|
||
|
#include <mutex>
|
||
|
#include <spdlog/spdlog.h>
|
||
|
|
||
|
#include "bar.hpp"
|
||
|
#include "client.hpp"
|
||
|
|
||
|
namespace waybar::modules::hypr {
|
||
|
|
||
|
std::string makeRequest(std::string);
|
||
|
|
||
|
} // namespace waybar::modules::hypr
|