]> arthur.barton.de Git - ax-zsh.git/blob - plugins/neofetch/neofetch.ax-io
std_aliases: Use "last -aw" for "lastf" and "lasth" aliases
[ax-zsh.git] / plugins / neofetch / neofetch.ax-io
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # neofetch.ax-io: Show neofetch(1) system information.
3
4 # Make sure that "neofetch(1)" is installed.
5 (( $+commands[neofetch] )) || return 1
6
7 # Don't run this plugin on "check-plugins"!
8 [[ -z "$AXZSH_PLUGIN_CHECK" ]] || return 0
9
10 # Don't show any info when ~/.hushlogin exists ...
11 [[ -r ~/.hushlogin ]] && return 0
12
13 # Check if neofetch(1) infos have been shown during last 60 minutes, and if so,
14 # don't show them now but return.
15 [[ -z `find "$XDG_CACHE_HOME/axzsh_last_neofetch" -mmin -60 2>/dev/null` ]] || return 0
16
17 neofetch \
18         --color_blocks off \
19         --disable packages \
20         --shell_path on \
21         --underline_char '~'
22
23 # Wtite "stamp" file.
24 [[ -w ~/ ]] && touch "$XDG_CACHE_HOME/axzsh_last_neofetch"