Make it so that zsh can write a histfile.

Zsh needs a directory to write it's history to. It can not make a directory and therefore, will not record history.
This commit is contained in:
g-w1 2020-05-26 14:01:24 -04:00 committed by GitHub
parent 8073ba91cf
commit b8a539b4ff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -156,6 +156,7 @@ systembeepoff() { dialog --infobox "Getting rid of that retarded error beep soun
finalize(){ \
dialog --infobox "Preparing welcome message..." 4 50
echo "exec_always --no-startup-id notify-send -i ~/.local/share/larbs/larbs.png 'Welcome to LARBS:' 'Press Super+F1 for the manual.' -t 10000" >> "/home/$name/.config/i3/config"
mkdir -p /home/$name/.cache/zsh/ # allows zsh to write a histfile. If this is not put in, zsh will not make the directory and there won't be a file.
dialog --title "All done!" --msgbox "Congrats! Provided there were no hidden errors, the script completed successfully and all the programs and configuration files should be in place.\\n\\nTo run the new graphical environment, log out and log back in as your new user, then run the command \"startx\" to start the graphical environment (it will start automatically in tty1).\\n\\n.t Luke" 12 80
}