18 lines
275 B
C++
18 lines
275 B
C++
|
//
|
||
|
// 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());
|
||
|
}
|
||
|
|
||
|
}
|