From: Alexander Barton Date: Fri, 8 Dec 2023 13:13:06 +0000 (+0100) Subject: neofetch: Don't configure fastfetch/neofetch, use defaults X-Git-Url: https://arthur.barton.de/gitweb/?p=ax-zsh.git;a=commitdiff_plain;h=d14d37813fd37ed5ca24f6aa23e370005bdf2dce neofetch: Don't configure fastfetch/neofetch, use defaults This way it is easier for the user to just provide a configuration file with the settings he likes. --- diff --git a/plugins/neofetch/neofetch.ax-io b/plugins/neofetch/neofetch.ax-io index 51c238e..ed4f197 100644 --- a/plugins/neofetch/neofetch.ax-io +++ b/plugins/neofetch/neofetch.ax-io @@ -9,16 +9,9 @@ axzsh_neofetch() { if (( $+commands[fastfetch] )); then - fastfetch \ - --structure Title:Separator:OS:Host:Kernel:Uptime:Packages:Shell:Display:DE:WM:WMTheme:Theme:Terminal:TerminalFont:CPU:GPU:Memory:Battery:PowerAdapter:Break \ - --percent-type 3 \ - --separator-string '~' + fastfetch elif (( $+commands[neofetch] )); then - neofetch \ - --color_blocks off \ - --disable packages \ - --shell_path on \ - --underline_char '~' + neofetch else echo "Neither fastfetch(1) nor neofetch(1) was found!" >&2 return 1