Unverified Commit df61458e authored by Sekai Zhou's avatar Sekai Zhou Committed by GitHub

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.
parent d4f6abf1
...@@ -3335,7 +3335,7 @@ END ...@@ -3335,7 +3335,7 @@ END
QT_BINDIR="$(qtpaths --binaries-dir)" && PATH+=":$QT_BINDIR" QT_BINDIR="$(qtpaths --binaries-dir)" && PATH+=":$QT_BINDIR"
IFS=$'\n' read -d "" -ra konsole_instances \ 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 for i in "${konsole_instances[@]}"; do
IFS=$'\n' read -d "" -ra konsole_sessions <<< "$(qdbus "$i" | grep -F '/Sessions/')" IFS=$'\n' read -d "" -ra konsole_sessions <<< "$(qdbus "$i" | grep -F '/Sessions/')"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment