quickshell/src/cpp/shell.cpp
2024-02-14 03:03:41 -08:00

11 lines
219 B
C++

#include "shell.hpp"
#include <qtmetamacros.h>
void ShellRoot::setConfig(ShellConfig config) {
this->mConfig = config;
emit this->configChanged();
}
ShellConfig ShellRoot::config() const { return this->mConfig; }