From 84a7f938fb42bb84febf43ef3de235312f8d688a Mon Sep 17 00:00:00 2001 From: Jonathan Schleifer Date: Fri, 25 Nov 2022 21:46:32 +0000 Subject: [PATCH] fish: Add flveri --- fish/functions/flveri.fish | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 fish/functions/flveri.fish diff --git a/fish/functions/flveri.fish b/fish/functions/flveri.fish new file mode 100644 index 0000000..cd53db5 --- /dev/null +++ b/fish/functions/flveri.fish @@ -0,0 +1,7 @@ +function flveri + if not set -q argv[1] + set argv[1] current + end + echo -e "\033[1m$argv[1]\033[0m" + fossil artifact "$argv[1]" | gpg --verify +end