From df61458e7fa60e98a165520c3832b86dc3108ef0 Mon Sep 17 00:00:00 2001 From: Sekai Zhou Date: Wed, 25 Nov 2020 13:22:45 +0800 Subject: [PATCH] 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. --- neofetch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neofetch b/neofetch index b2db1711..328cc1cd 100755 --- a/neofetch +++ b/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/')"