diff --git a/modules/pacman/functions/pacman-list-explicit b/modules/pacman/functions/pacman-list-explicit index a61eb94..5e545d0 100644 --- a/modules/pacman/functions/pacman-list-explicit +++ b/modules/pacman/functions/pacman-list-explicit @@ -6,6 +6,17 @@ # Sorin Ionescu # -sudo pacman --query --explicit --info $(pacman --query --upgrades | cut -d' ' -f 1) \ - | awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}' +sudo pacman --query --explicit --info \ + $(pacman --query --upgrades | cut -d' ' -f 1) \ + | awk ' + BEGIN { + FS=":" + } + /^Name/ { + print $2 + } + /^Description/ { + print $2 + } + '