From 76a9a37e81595580e579ccfa1e8c1264ee9ba290 Mon Sep 17 00:00:00 2001 From: Isaac Shoebottom Date: Wed, 2 Apr 2025 12:30:30 -0300 Subject: [PATCH] Update some core utilities --- dot_config/eget/eget.toml | 11 ++++++++++- dot_config/eget/executable_post_install.sh | 3 +++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/dot_config/eget/eget.toml b/dot_config/eget/eget.toml index a788374..cbfa0bf 100644 --- a/dot_config/eget/eget.toml +++ b/dot_config/eget/eget.toml @@ -49,4 +49,13 @@ ["scop/bash-completion"] # Needs manual intervention to install, as its a bash script with a subfolder containing completions download_only = true - asset_filters = [ ".tar.xz" ] \ No newline at end of file + asset_filters = [ ".tar.xz" ] + +# ["srevinsaju/Firefox-Appimage"] +# target = "~/.local/bin/firefox" +# tag = "firefox" +# asset_filters = [ ".AppImage", "^zsync" ] + +["BtbN/FFmpeg-Builds"] + asset_filters = [ "^lgpl", "shared", "master", ".tar.xz" ] + all = true \ No newline at end of file diff --git a/dot_config/eget/executable_post_install.sh b/dot_config/eget/executable_post_install.sh index 3b341fd..ec705b2 100644 --- a/dot_config/eget/executable_post_install.sh +++ b/dot_config/eget/executable_post_install.sh @@ -42,5 +42,8 @@ if compgen -G "bash-completion*tar*" > /dev/null; then chmod +x bash_completion fi +# Handle shared libraries +mv -f $(fd --glob "*.so*") ../lib + # Unchange directory popd > /dev/null \ No newline at end of file