1
0
Fork 0
passwordhash/cli.ts

8 lines
224 B
TypeScript
Executable File

#!/usr/bin/env -S deno run --allow-run --allow-read --allow-env
import { showZenityUI } from "./ui/zenity.ts";
if (import.meta.main) {
// TODO fall back on terminal UI if zenity is not available
await showZenityUI();
}