Skip to content

Commit

Permalink
Fastfetch: new app (draft)
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed Nov 2, 2024
1 parent 0b487ee commit d841511
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/Fastfetch/description
Original file line number Diff line number Diff line change
@@ -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
Binary file added apps/Fastfetch/icon-24.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added apps/Fastfetch/icon-64.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions apps/Fastfetch/install
Original file line number Diff line number Diff line change
@@ -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
3 changes: 3 additions & 0 deletions apps/Fastfetch/uninstall
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

purge_packages || exit 1
1 change: 1 addition & 0 deletions apps/Fastfetch/website
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://github.com/fastfetch-cli/fastfetch

0 comments on commit d841511

Please sign in to comment.