diff --git a/apps/Fastfetch/description b/apps/Fastfetch/description new file mode 100644 index 00000000000..c5acb4ff784 --- /dev/null +++ b/apps/Fastfetch/description @@ -0,0 +1,4 @@ +Fastfetch is a neofetch-like tool for fetching system information and displaying it prettily. +It is written mainly in C, with performance and customizability in mind. + +To run in a terminal: fastfetch diff --git a/apps/Fastfetch/icon-24.png b/apps/Fastfetch/icon-24.png new file mode 100644 index 00000000000..1e7507a64ae Binary files /dev/null and b/apps/Fastfetch/icon-24.png differ diff --git a/apps/Fastfetch/icon-64.png b/apps/Fastfetch/icon-64.png new file mode 100644 index 00000000000..825e2fe2f01 Binary files /dev/null and b/apps/Fastfetch/icon-64.png differ diff --git a/apps/Fastfetch/install b/apps/Fastfetch/install new file mode 100755 index 00000000000..422472730b4 --- /dev/null +++ b/apps/Fastfetch/install @@ -0,0 +1,12 @@ +#!/bin/bash + +version=2.28.0 + +case "$arch" in +"64") install_packages https://github.com/fastfetch-cli/fastfetch/releases/download/${version}/fastfetch-linux-aarch64.deb || exit 1 ;; +"32") install_packages https://github.com/fastfetch-cli/fastfetch/releases/download/${version}/fastfetch-linux-armv7l.deb || exit 1 ;; +*) error "Failed to detect OS CPU architecture! Something is very wrong." ;; +esac + +fastfetch +true diff --git a/apps/Fastfetch/uninstall b/apps/Fastfetch/uninstall new file mode 100755 index 00000000000..238a43e0bef --- /dev/null +++ b/apps/Fastfetch/uninstall @@ -0,0 +1,3 @@ +#!/bin/bash + +purge_packages || exit 1 diff --git a/apps/Fastfetch/website b/apps/Fastfetch/website new file mode 100644 index 00000000000..d9352fe5b3e --- /dev/null +++ b/apps/Fastfetch/website @@ -0,0 +1 @@ +https://github.com/fastfetch-cli/fastfetch