From 40051de4a920a05b94705c3823803441206138b5 Mon Sep 17 00:00:00 2001 From: Michael Yockey Date: Sat, 16 Nov 2024 19:18:09 -0500 Subject: [PATCH] install: Appimages require libfuse on Linux --- dependencies/apt.txt | 1 + install.zsh | 1 + 2 files changed, 2 insertions(+) diff --git a/dependencies/apt.txt b/dependencies/apt.txt index 0c9f308..4e9d1e1 100644 --- a/dependencies/apt.txt +++ b/dependencies/apt.txt @@ -6,6 +6,7 @@ gh git gnupg golang +libfuse2t64 rbenv ruby-build stow diff --git a/install.zsh b/install.zsh index 63c64ee..fe2e4fd 100755 --- a/install.zsh +++ b/install.zsh @@ -34,6 +34,7 @@ case `uname` in fi echo "Installing dependencies with Apt" + sudo apt-add-repository -y universe sudo apt-add-repository -y --ppa ppa:zhangsongcui3371/fastfetch sudo apt install $(< ./dependencies/apt.txt) ;;