From 36023c921ac7aed8ffc9849d2fb0a971a53e1cc0 Mon Sep 17 00:00:00 2001 From: Sheppy Date: Mon, 17 Jul 2017 15:25:14 +0200 Subject: [PATCH] hack to set LDpreload for zsh itself --- zshrc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/zshrc b/zshrc index 6e0ca03..bdfd28f 100644 --- a/zshrc +++ b/zshrc @@ -263,3 +263,10 @@ source ~/.config/other/zsh-history-substring-search.zsh bindkey '^[[5~' history-substring-search-up bindkey '^[[6~' history-substring-search-down alias genserverkey='openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 100000' +if [[ $FIRST_RUN == "FALSE" ]]; then + ; +else + FIRST_RUN="FALSE" + export FIRST_RUN + exec zsh +fi