// // Created by illyum on 9/20/2024. // #include "../Platform.hpp" #include namespace Platform { void ShowPopup(const char* message) { std::string command = "zenity --info --text=\""; command += message; command += "\""; system(command.c_str()); } }