10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
|
#!/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";
|