Fix font support for yakuake (#1615)

Originally added in #1063, but did not actually work because it only
looked for konsole processes (rather than yakuake's) when querying its
session profile.
master
Sekai Zhou 5 years ago committed by GitHub
parent d4f6abf1a8
commit df61458e7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      neofetch

@ -3335,7 +3335,7 @@ END
QT_BINDIR="$(qtpaths --binaries-dir)" && PATH+=":$QT_BINDIR"
IFS=$'\n' read -d "" -ra konsole_instances \
<<< "$(qdbus | awk '/org.kde.konsole/ {print $1}')"
<<< "$(qdbus | awk '/org.kde.'"$term"'/ {print $1}')"
for i in "${konsole_instances[@]}"; do
IFS=$'\n' read -d "" -ra konsole_sessions <<< "$(qdbus "$i" | grep -F '/Sessions/')"

Loading…
Cancel
Save