Skip to content

Commit

Permalink
[F] Fix terminal font info for yakuake (again)
Browse files Browse the repository at this point in the history
Once fixed in dylanaraps#1063, but got broken again with the fix of
hykilpikonna#116.
  • Loading branch information
syimyuzya committed Feb 15, 2024
1 parent 048e2d9 commit a178f3b
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 a178f3b

Please sign in to comment.