diff --git a/core/tabs/applications-setup/fastfetch-setup.sh b/core/tabs/applications-setup/fastfetch-setup.sh index 4eca3abd..a140a5d8 100644 --- a/core/tabs/applications-setup/fastfetch-setup.sh +++ b/core/tabs/applications-setup/fastfetch-setup.sh @@ -9,6 +9,11 @@ installFastfetch() { pacman) "$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm fastfetch ;; + apt-get|nala) + curl -sSLo /tmp/fastfetch.deb https://github.com/fastfetch-cli/fastfetch/releases/latest/download/fastfetch-linux-amd64.deb + "$ESCALATION_TOOL" dpkg -i /tmp/fastfetch.deb + rm /tmp/fastfetch.deb + ;; *) "$ESCALATION_TOOL" "$PACKAGER" install -y fastfetch ;;