Skip to content

Commit

Permalink
[PR] #235 from syimyuzya: Fix terminal font info for yakuake (again)
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna authored Feb 20, 2024
2 parents 048e2d9 + eeffb35 commit d374354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neofetch
Original file line number Diff line number Diff line change
Expand Up @@ -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")"

Expand Down

0 comments on commit d374354

Please sign in to comment.