2021-11-21 13:11:51 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../defines.hpp"
|
2021-11-21 18:34:20 +01:00
|
|
|
#include <fstream>
|
2021-11-21 13:11:51 +01:00
|
|
|
|
|
|
|
std::string exec(const char* cmd);
|
2021-11-21 18:34:20 +01:00
|
|
|
void clearLogs();
|
2021-12-09 21:58:20 +01:00
|
|
|
void emptyEvent(xcb_drawable_t window = 0);
|
|
|
|
void wakeUpEvent(xcb_drawable_t window);
|
2021-11-24 18:37:45 +01:00
|
|
|
bool xcbContainsAtom(xcb_get_property_reply_t* PROP, xcb_atom_t ATOM);
|
2021-11-23 18:48:03 +01:00
|
|
|
|
2021-11-27 19:07:33 +01:00
|
|
|
double parabolic(double from, double to, double incline);
|
|
|
|
|
|
|
|
std::vector<std::string> splitString(std::string, char);
|