dotfiles/README.md
2023-05-13 18:21:10 -04:00

1.2 KiB

dotfiles

  1. set the fqdn (this is necessary for some of the host-specific chezmoi config):
# debian
sudo hostnamectl set-hostname $MY_HOSTNAME.local

# macos
sudo scutil --set HostName $MY_HOSTNAME.local
sudo scutil --set LocalHostName $MY_HOSTNAME
sudo scutil --set ComputerName $MY_HOSTNAME
dscacheutil -flushcache  # maybe reboot, too?
  1. set the shell:
# debian
chsh -s $(which zsh)

# macos
sudo chpass -s '/opt/local/bin/zsh' $USER
  1. set up the package manager:
# debian - nothing to do here

# macos
xcode-select --install
# download the pkg installer from: https://www.macports.org
# TODO: is there a reasonable unattended install workflow for macports?
  1. install a patched font, Anonymice Pro. size 16 or 17, no anti-aliasing

  2. bootstrap chezmoi:

sh -c "$(curl -fsLS get.chezmoi.io)" -- \
  init \
  git://pingo.thermokar.st/dotfiles \
  --apply \
  --guess-repo-url=false
  1. install miniconda:
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-arm64.sh
chmod +x Miniconda3-latest-MacOSX-arm64.sh
sudo ./Miniconda3-latest-MacOSX-arm64.sh -b -u -p /opt/miniconda3