IsoEngine/engine/src/platform/posix/PosixPopup.cpp

18 lines
275 B
C++
Raw Normal View History

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