10 lines
188 B
PHP
Executable File
10 lines
188 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
if (!trim(exec("which zenity"))) {
|
|
fprintf(STDERR, "You need to install zenity to use this tool.\n");
|
|
exit(1);
|
|
}
|
|
|
|
require_once __DIR__."/../src/app.php";
|