* Migrate to hyprlang * pop up errors * fix swapped args * Meson & Nix: build with hyprlang * CI: add hyprlang to setup action * add infra for plugin stuff * fix hyprctl getoption * fix hyprctl getoption with json * format * fix post parse logic * fix autogen config * oops missed exec-once * fmt * fix ws rules * require 0.3.0 for hyprlang * nix: flaek * minor type fixes * fix cfg usages in swipe * use cvarlist for ws rules * fix throw in addPluginConfigVar * Nix: update hyprlang * minor fixes * fix disableLogs * mention hyprlang docs * bump hyprlang dep in cmake * Meson: bump min hyprlang version Nix: update hyprlang * minor fix * Nix: update meson patch --------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
28 lines
No EOL
712 B
C++
28 lines
No EOL
712 B
C++
#include "ThreadManager.hpp"
|
|
#include "../debug/HyprCtl.hpp"
|
|
#include "../Compositor.hpp"
|
|
|
|
int slowUpdate = 0;
|
|
|
|
int handleTimer(void* data) {
|
|
const auto PTM = (CThreadManager*)data;
|
|
|
|
static auto* const PDISABLECFGRELOAD = (Hyprlang::INT* const*)g_pConfigManager->getConfigValuePtr("misc:disable_autoreload");
|
|
|
|
if (**PDISABLECFGRELOAD != 1)
|
|
g_pConfigManager->tick();
|
|
|
|
wl_event_source_timer_update(PTM->m_esConfigTimer, 1000);
|
|
|
|
return 0;
|
|
}
|
|
|
|
CThreadManager::CThreadManager() {
|
|
m_esConfigTimer = wl_event_loop_add_timer(g_pCompositor->m_sWLEventLoop, handleTimer, this);
|
|
|
|
wl_event_source_timer_update(m_esConfigTimer, 1000);
|
|
}
|
|
|
|
CThreadManager::~CThreadManager() {
|
|
//
|
|
} |