mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-10-03 16:51:29 +00:00
Merge pull request #1187 from arisinfenix/konsole
term_font: fix issue with konsole font detection
This commit is contained in:
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
Block a user