From 6e67b3a335ddb4f5bb4efac3df71556976dedd92 Mon Sep 17 00:00:00 2001 From: Tomas Date: Sat, 11 Oct 2025 05:08:14 +0200 Subject: [PATCH] Update --- apps/hexer/.gitignore | 1 + apps/hexer/install.sh | 8 ++++++++ scripts/rmquery | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 apps/hexer/.gitignore create mode 100644 apps/hexer/install.sh create mode 100755 scripts/rmquery diff --git a/apps/hexer/.gitignore b/apps/hexer/.gitignore new file mode 100644 index 0000000..2eb5b55 --- /dev/null +++ b/apps/hexer/.gitignore @@ -0,0 +1 @@ +hexer/ diff --git a/apps/hexer/install.sh b/apps/hexer/install.sh new file mode 100644 index 0000000..fd99ea5 --- /dev/null +++ b/apps/hexer/install.sh @@ -0,0 +1,8 @@ +#!/bin/sh + + +git clone "https://gitlab.com/Kirstukas1/hexer.git" +cd hexer +echo Building... +make +ln -s -v -f "$(pwd)/hexer" "$HOME/.local/bin/hexer" diff --git a/scripts/rmquery b/scripts/rmquery new file mode 100755 index 0000000..d26eef3 --- /dev/null +++ b/scripts/rmquery @@ -0,0 +1,3 @@ +#!/bin/env fish + +for f in $argv; mv -v "$f" "$(echo "$f" | sed 's/#.*$//' | sed 's/?.*$//')"; end