Add and use fish shell

This commit is contained in:
hak8or 2019-02-16 19:05:16 -05:00
부모 b62cec135a
커밋 32d39ee531
2개의 변경된 파일8개의 추가작업 그리고 4개의 파일을 삭제

파일 보기

@ -57,11 +57,11 @@ EOM05594313219813
# Update as needed.
echo "$TAGSTR Updating all packages as needed"
pacman -Syu --noconfirm >> $LOGFILE 2>&1
pacman -Syu --noconfirm --noprogressbar --needed >> $LOGFILE 2>&1
# Do an update and install some packages.
echo "$TAGSTR Installing base-devel, git, htop, vim, rsync, go, dotnet-sdk, wget, tmux, and cowsay"
pacman -S base-devel git htop vim cowsay rsync go dotnet-sdk wget tmux --noconfirm --needed >> $LOGFILE 2>&1
echo "$TAGSTR Installing base-devel, git, htop, vim, rsync, go, dotnet-sdk, wget, tmux, fish, and cowsay"
pacman -S base-devel git htop vim cowsay rsync go dotnet-sdk wget fish tmux --noconfirm --noprogressbar --needed >> $LOGFILE 2>&1
# Change locale to EN US UTF-8
echo "$TAGSTR Changing locale to EN US UTF-8"
@ -71,6 +71,10 @@ locale-gen >> $LOGFILE 2>&1
echo LANG=en_US.UTF-8 > /etc/locale.conf >> $LOGFILE 2>&1
export LANG=en_US.UTF-8
# Change our shell to fish
echo "$TAGSTR Changing shell to fish"
chsh -s /usr/bin/fish >> $LOGFILE 2>&1
# Install yay. Why yay instead of pacaur? Because pacaur doesn't allow
# itself to be ran as root, even though all we have is root in the container,
# and I don't want to bother fiddling with users just for this. Yay on the

파일 보기

@ -174,7 +174,7 @@ VMID=$(ssh -p $PROXMOX_PORT root@$PROXMOX_IP_ADDR /usr/bin/env bash <<-'AcRP030C
# https://forum.proxmox.com/threads/customize-a-lxc-template.23461/
# https://forum.proxmox.com/threads/lxc-create-template-from-existing-container.24239/
# For Arch linux:
# 1. Login via pct enter isntead of ssh
# 1. Login via pct enter instead of ssh
# 2. Remove all contents of ~/.ssh folder
# 3. Clear pacman cache with yay -Scc
# 4. Exit and shutdown the container