#include "mainwindow.h" #include using namespace Qt::StringLiterals; #include using json = nlohmann::json; int main(int argc, char *argv[]) { /* auto sway = Sway(); auto resp = sway.sendIPC(SWAY_GET_OUTPUTS); std::cout << resp.msg << "\n"; */ QApplication a(argc, argv); QCoreApplication::setOrganizationName("Grimmauld"); QCoreApplication::setApplicationName("SwayMux"); QGuiApplication::setDesktopFileName("swaymux"); MainWindow w; w.showMaximized(); return a.exec(); }