From 5caff09ee52d9607d598876db9ffe88964e2f1c5 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Sun, 30 Apr 2023 16:09:55 -0500 Subject: [PATCH] macos prep --- README.md | 22 +++++++++++++++++++++- home/run_once_install-packages.sh.tmpl | 21 ++++++++++++++++----- 2 files changed, 37 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a73b396..443a3ce 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,37 @@ # dotfiles -on debian machines, set the fqdn (this is necessary for some of the host-specific chezmoi config): +set the fqdn (this is necessary for some of the host-specific chezmoi config): ```bash +# 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? ``` set the shell: ```bash +# debian chsh -s $(which zsh) + +# macos +sudo chpass -s '/opt/local/bin/zsh' $USER ``` +set up the package manager: + +```bash +xcode-select --install +# grab the pkg installer from: https://www.macports.org/install.php +``` + +patched font, [Anonymice Pro](https://www.nerdfonts.com/font-downloads) + bootstrap chezmoi: ```bash diff --git a/home/run_once_install-packages.sh.tmpl b/home/run_once_install-packages.sh.tmpl index 0c9d995..7412a10 100644 --- a/home/run_once_install-packages.sh.tmpl +++ b/home/run_once_install-packages.sh.tmpl @@ -1,14 +1,25 @@ {{ if eq .chezmoi.hostname "devterm" -}} #!/bin/sh sudo apt install \ - ripgrep \ brightnessctl \ - lynx \ + git \ libncurses-dev \ - zsh \ + libssl-dev \ + lynx \ + ripgrep \ tmux \ tree \ - libssl-dev \ - git \ + zsh \ -y {{ end }} +{{ if eq .chemoi.hostname "rattusrattus" -}} +#!/bin/sh +sudo port install \ + git \ + helix \ + ripgrep \ + tmux \ + tree \ + zellij \ + zsh +{{ end }}