Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Fix font support for yakuake (#1615)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
syimyuzya authored Nov 25, 2020
1 parent d4f6abf commit df61458
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -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/')"
Expand Down

0 comments on commit df61458

Please sign in to comment.