# HG changeset patch # User František Kučera # Date 1602690365 -7200 # Node ID a6d332fa816cdc54b59366cd4cf8468ad85b5c57 # Parent e0627da77dadc483e2f69c38cf58016cfbde4974 fix bash-completion (uuid) diff -r e0627da77dad -r a6d332fa816c bash-completion.sh --- a/bash-completion.sh Sun Oct 11 17:41:53 2020 +0200 +++ b/bash-completion.sh Wed Oct 14 17:46:05 2020 +0200 @@ -19,7 +19,7 @@ if type relpipe-in-jack &> /dev/null && type relpipe-out-nullbyte &> /dev/null; then relpipe-in-jack --list-ports true --list-midi-messages false 2>/dev/null \ | relpipe-out-nullbyte \ - | while _relpipe_out_jack_completion_read_nullbyte "name" "input" "output" "physical" "terminal" "mine" "midi" "type"; do + | while _relpipe_out_jack_completion_read_nullbyte "name" "uuid" "input" "output" "physical" "terminal" "mine" "midi" "type"; do if [[ "$midi" = "true" && "$input" = "true" && "$mine" = "false" ]]; then echo "$name"; fi; done fi }