I can list installed packages on my Fedora with:
dnf list installed
When searching for packages, I'd use something like:
dnf search terminal
dnf will proceed to list available packages similar to this:
tmux.x86_64 : A terminal multiplexer
i.e. "<package> : <summary>". I'd like to have a similar output of packages, but for installed packages. Search among installed packages is not necessary, as I can simply pipe the output into grep (or ripgrep), but an output like the one that results from a search is something I'd like to have.