Simplified image shuffle, thanks @aranega
This commit is contained in:
parent
0527469643
commit
067c200b71
1 changed files with 2 additions and 2 deletions
4
neofetch
4
neofetch
|
@ -2264,8 +2264,8 @@ getimage () {
|
|||
"wall") getwallpaper ;;
|
||||
"ascii") getascii; return ;;
|
||||
*)
|
||||
if [ "${image: -1}" == "/" ]; then
|
||||
files=("$image"*.png "$image"*.jpg)
|
||||
if [ -d "$image" ]; then
|
||||
files=("$image"*.{png,jpg,jpeg})
|
||||
img="$(printf "%s" "${files[RANDOM % (${#files[@]} - 1)]}")"
|
||||
else
|
||||
img="$image"
|
||||
|
|
Loading…
Reference in a new issue