#include "UpdateScreen.hpp" #include #include #include #include using namespace Hyprutils::String; CUpdateScreen::CUpdateScreen(QObject* parent) : QObject(parent) { ; } void CUpdateScreen::onButtonPress(QString buttonName) { if (buttonName == "quit") exit(0); if (buttonName == "donate") QDesktopServices::openUrl(QUrl("https://hyprland.org/support")); }