From c60f14df2429b0fef364607f3acb2d2eb0bce993 Mon Sep 17 00:00:00 2001 From: pika Date: Sat, 24 May 2025 02:36:03 +0200 Subject: [PATCH] fix? --- gbar.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gbar.sh b/gbar.sh index bc0f0c8..8038ccc 100644 --- a/gbar.sh +++ b/gbar.sh @@ -19,12 +19,12 @@ # This only wokrs for generic package names, like neovim, or vim, or tmux etc.. # not every package packagemanager has the same packagenames for their packages.. getImports() { - local url="https://git.k4li.de/scripts/imports/raw/branch/main/dreams.sh" + local url="https://git.k4li.de/scripts/imports/raw/branch/main/dream.sh" local import="$(mktemp)" if command_exists curl; then curl -fsSL $url -o $import elif command_exists wget; then - wget -o $import $url + wget -O $import $url else echo "curl/wget is required, but missing.." exit 69