From 748efd8af7baa3c73d382d2a964e6dd9901d022f Mon Sep 17 00:00:00 2001 From: Shohei YOSHIDA Date: Thu, 26 Mar 2026 17:30:13 +0900 Subject: [PATCH] Use builtin generating sequential number instead of external commands `seq` is not installed on some BSD platforms by default. --- src/_inxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_inxi b/src/_inxi index 67d85b4..a4f20cd 100644 --- a/src/_inxi +++ b/src/_inxi @@ -21,7 +21,7 @@ _inxi() { local curcontext="$curcontext" local ret=1 - local colors=($(seq 0 42)) + local -a colors=({0..42}) _arguments -C -s \ '(-A --audio)'{-A,--audio}"[Show Audio/sound card(s) information]" \