mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
12 lines
232 B
C++
12 lines
232 B
C++
#include "../core/plugin.hpp"
|
|
#include "process.hpp"
|
|
|
|
namespace {
|
|
|
|
class IoPlugin: public QuickshellPlugin {
|
|
void onReload() override { DisownedProcessContext::destroyInstance(); }
|
|
};
|
|
|
|
QS_REGISTER_PLUGIN(IoPlugin);
|
|
|
|
} // namespace
|