commit b9a1c86449edc45893dfa0019c4a8f0c3bcfac04 parent c4ed31db09eb96f8df07db8303b79771b3fe42c7 Author: Jan Pobrislo <ccx@webprojekty.cz> Date: Thu, 28 Jul 2022 23:14:29 +0200 Parameter default Diffstat:
M | command/s | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/command/s b/command/s @@ -41,7 +41,7 @@ show_oneshots() { local -a fmt_active=( '%F{yellow}%BA%b%f' '%F{cyan}I%f' ) local s for s in $oneshots; do - printf "%s %s\t%s\n" ${(%)fmt_active[${service_active[$s]:-2}]} $s ${(j: :)${(f)service_bundles[$s]}} + printf "%s %s\t%s\n" ${(%)fmt_active[${service_active[$s]:-2}]} $s ${(j: :)${(f)service_bundles[$s]:--}} done }