mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-18 03:40:08 +00:00
refactor(chucknorris): refresh plugin code
This commit is contained in:
parent
e5b9b80008
commit
53c9661b00
2 changed files with 18 additions and 24 deletions
|
@ -1,8 +1,6 @@
|
||||||
# chucknorris
|
# chucknorris
|
||||||
|
|
||||||
Chuck Norris fortunes plugin for oh-my-zsh. Perfectly suitable as MOTD.
|
Chuck Norris fortunes plugin for Oh My Zsh. Perfectly suitable as MOTD.
|
||||||
|
|
||||||
**Maintainers**: [apjanke](https://github.com/apjanke) [maff](https://github.com/maff)
|
|
||||||
|
|
||||||
To use it add `chucknorris` to the plugins array in you zshrc file.
|
To use it add `chucknorris` to the plugins array in you zshrc file.
|
||||||
|
|
||||||
|
|
|
@ -1,28 +1,24 @@
|
||||||
# chucknorris: Chuck Norris fortunes
|
|
||||||
|
|
||||||
# Automatically generate or update Chuck's compiled fortune data file
|
|
||||||
# $0 must be used outside a local function. This variable name is unlikly to collide.
|
|
||||||
CHUCKNORRIS_PLUGIN_DIR=${0:h}
|
|
||||||
|
|
||||||
() {
|
() {
|
||||||
local DIR=$CHUCKNORRIS_PLUGIN_DIR/fortunes
|
# %x: name of file containing code being executed
|
||||||
if [[ ! -f $DIR/chucknorris.dat ]] || [[ $DIR/chucknorris.dat -ot $DIR/chucknorris ]]; then
|
local fortunes_dir="${${(%):-%x}:h}/fortunes"
|
||||||
# For some reason, Cygwin puts strfile in /usr/sbin, which is not on the path by default
|
|
||||||
local strfile=strfile
|
|
||||||
if ! which strfile &>/dev/null && [[ -f /usr/sbin/strfile ]]; then
|
|
||||||
strfile=/usr/sbin/strfile
|
|
||||||
fi
|
|
||||||
if which $strfile &> /dev/null; then
|
|
||||||
$strfile $DIR/chucknorris $DIR/chucknorris.dat >/dev/null
|
|
||||||
else
|
|
||||||
echo "[oh-my-zsh] chucknorris depends on strfile, which is not installed" >&2
|
|
||||||
echo "[oh-my-zsh] strfile is often provided as part of the 'fortune' package" >&2
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
alias chuck="fortune -a $DIR"
|
alias chuck="fortune -a $fortunes_dir"
|
||||||
alias chuck_cow="chuck | cowthink"
|
alias chuck_cow="chuck | cowthink"
|
||||||
}
|
|
||||||
|
|
||||||
unset CHUCKNORRIS_PLUGIN_DIR
|
# Automatically generate or update Chuck's compiled fortune data file
|
||||||
|
if [[ "$fortunes_dir/chucknorris" -ot "$fortunes_dir/chucknorris.dat" ]]; then
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# For some reason, Cygwin puts strfile in /usr/sbin, which is not on the path by default
|
||||||
|
local strfile="${commands[strfile]:-/usr/sbin/strfile}"
|
||||||
|
if [[ ! -x "$strfile" ]]; then
|
||||||
|
echo "[oh-my-zsh] chucknorris depends on strfile, which is not installed" >&2
|
||||||
|
echo "[oh-my-zsh] strfile is often provided as part of the 'fortune' package" >&2
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Generate the compiled fortune data file
|
||||||
|
$strfile "$fortunes_dir/chucknorris" "$fortunes_dir/chucknorris.dat" >/dev/null
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue