Skip to content

Commit

Permalink
create cache dir with correct user
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeSmithxyz committed May 26, 2020
1 parent f8dd8ca commit eb89e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion larbs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ 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
}

Expand Down Expand Up @@ -234,6 +233,7 @@ systembeepoff

# Make zsh the default shell for the user.
chsh -s /bin/zsh $name >/dev/null 2>&1
sudo -u "$name" mkdir -p "/home/$name/.cache/zsh/"

# dbus UUID must be generated for Artix runit.
dbus-uuidgen > /var/lib/dbus/machine-id
Expand Down

0 comments on commit eb89e0b

Please sign in to comment.