[PR] #235 from syimyuzya: Fix terminal font info for yakuake (again)

This commit is contained in:
Azalea 2024-02-20 18:56:14 -05:00 committed by GitHub
commit d374354cb6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4654,8 +4654,8 @@ END
# Get Process ID of current konsole window / tab
child="$(get_ppid "$$")"
# Loop while the process name is not "konsole"
while [[ "$(ps -p "$(get_ppid "$child")" -o comm=)" != "konsole" ]]; do
# Loop while the process name is not "konsole"/"yakuake"
while [[ "$(ps -p "$(get_ppid "$child")" -o comm=)" != "$term" ]]; do
# Get the parent process ID
child="$(get_ppid "$child")"