Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a178f3b

Browse files
committedFeb 15, 2024
[F] Fix terminal font info for yakuake (again)
Once fixed in dylanaraps#1063, but got broken again with the fix of hykilpikonna#116.
1 parent 048e2d9 commit a178f3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎neofetch

+2-2
Original file line numberDiff line numberDiff line change
@@ -4654,8 +4654,8 @@ END
46544654
# Get Process ID of current konsole window / tab
46554655
child="$(get_ppid "$$")"
46564656

4657-
# Loop while the process name is not "konsole"
4658-
while [[ "$(ps -p "$(get_ppid "$child")" -o comm=)" != "konsole" ]]; do
4657+
# Loop while the process name is not "konsole"/"yakuake"
4658+
while [[ "$(ps -p "$(get_ppid "$child")" -o comm=)" != "$term" ]]; do
46594659
# Get the parent process ID
46604660
child="$(get_ppid "$child")"
46614661

0 commit comments

Comments
 (0)
Please sign in to comment.