From 0b04cd2ed6695579b31643c050b371d15cfbd168 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Mon, 3 Nov 2025 12:14:32 +0100 Subject: [PATCH] Minimal --- main.lua | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/main.lua b/main.lua index a252f73..454ca61 100644 --- a/main.lua +++ b/main.lua @@ -17,18 +17,5 @@ return { return ya.notify { title = "Gpg", content = "No file selected", level = "warn", timeout = 5 } - local urls = selected_or_hovered() - if #urls == 0 then - return ya.notify { title = "Gpg", content = "No file selected", level = "warn", timeout = 5 } - end - local status, err = Command("gpg"):arg("--yes"):arg("--recipient"):arg("jonashahn1@gmx.net"):arg(urls[1]):arg("--encrypt"):arg(urls[1] .. ".gpg"):spawn():wait() - if not status or not status.success then - ya.notify { - title = "Chmod", - content = string.format("Chmod on selected files failed, error: %s", status and status.code or err), - level = "error", - timeout = 5, - } - end end, }