Prefer USER to USERNAME

USERNAME seems to act weird on MacOS in scripts and nvim conifig
This commit is contained in:
Andrew Tomaka 2022-12-10 09:44:53 -05:00
parent a567fe4f12
commit fdf329b3df
Signed by: atomaka
GPG key ID: 61209BF70A5B18BE
3 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ install_alacritty() {
sudo mv /tmp/Alacritty.svg /usr/share/pixmaps/Alacritty.svg
sudo desktop-file-install /tmp/Alacritty.desktop
sudo update-desktop-database
sudo ln -s /home/$USERNAME/.cargo/bin/alacritty /usr/local/bin/alacritty
sudo ln -s /home/$USER/.cargo/bin/alacritty /usr/local/bin/alacritty
fi
}