diff --git a/ui/zenity.ts b/ui/zenity.ts index 0fa1f24..414ae9a 100644 --- a/ui/zenity.ts +++ b/ui/zenity.ts @@ -32,7 +32,7 @@ async function copyToClipboard(text: string): Promise { } async function readPrivateKey(): Promise { - const content = await Deno.readTextFile(".config.json"); + const content = await Deno.readTextFile(".local/config.json"); const config = JSON.parse(content); return config.privateKey; }