Merge pull request #1187 from arisinfenix/konsole
term_font: fix issue with konsole font detection
This commit is contained in:
commit
762d239c32
3
neofetch
3
neofetch
|
@ -2926,7 +2926,8 @@ END
|
|||
# Get Process ID of current konsole window / tab
|
||||
child="$(get_ppid "$$")"
|
||||
|
||||
IFS=$'\n' read -d "" -ra konsole_instances < <(qdbus | grep -F 'org.kde.konsole')
|
||||
IFS=$'\n' read -d "" -ra konsole_instances \
|
||||
< <(qdbus | awk '/org.kde.konsole/ {print $1}')
|
||||
|
||||
for i in "${konsole_instances[@]}"; do
|
||||
IFS=$'\n' read -d "" -ra konsole_sessions < <(qdbus "$i" | grep -F '/Sessions/')
|
||||
|
|
Reference in New Issue