mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-16 09:50:06 +00:00
kill timer process on exit
This commit is contained in:
parent
5c816e13ca
commit
bad4e62e93
1 changed files with 6 additions and 0 deletions
|
@ -2093,6 +2093,12 @@ _p9k_init_timer() {
|
|||
fi
|
||||
done
|
||||
" <&$_P9K_TIMER_FD2 >&$_P9K_TIMER_FD1 2>/dev/null &!
|
||||
local pid=$!
|
||||
function _p9k_kill_timer_${pid}() {
|
||||
emulate -L zsh
|
||||
kill -- -${${(%)${:-%N}}#_p9k_kill_timer_} &>/dev/null
|
||||
}
|
||||
add-zsh-hook zshexit _p9k_kill_timer_${pid}
|
||||
}
|
||||
|
||||
if ! _p9k_start_timer ; then
|
||||
|
|
Loading…
Reference in a new issue