macos prep
This commit is contained in:
parent
d20996f16a
commit
5caff09ee5
2 changed files with 37 additions and 6 deletions
22
README.md
22
README.md
|
@ -1,17 +1,37 @@
|
||||||
# dotfiles
|
# 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
|
```bash
|
||||||
|
# debian
|
||||||
sudo hostnamectl set-hostname $MY_HOSTNAME.local
|
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:
|
set the shell:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
# debian
|
||||||
chsh -s $(which zsh)
|
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:
|
bootstrap chezmoi:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
|
@ -1,14 +1,25 @@
|
||||||
{{ if eq .chezmoi.hostname "devterm" -}}
|
{{ if eq .chezmoi.hostname "devterm" -}}
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
sudo apt install \
|
sudo apt install \
|
||||||
ripgrep \
|
|
||||||
brightnessctl \
|
brightnessctl \
|
||||||
lynx \
|
git \
|
||||||
libncurses-dev \
|
libncurses-dev \
|
||||||
zsh \
|
libssl-dev \
|
||||||
|
lynx \
|
||||||
|
ripgrep \
|
||||||
tmux \
|
tmux \
|
||||||
tree \
|
tree \
|
||||||
libssl-dev \
|
zsh \
|
||||||
git \
|
|
||||||
-y
|
-y
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
{{ if eq .chemoi.hostname "rattusrattus" -}}
|
||||||
|
#!/bin/sh
|
||||||
|
sudo port install \
|
||||||
|
git \
|
||||||
|
helix \
|
||||||
|
ripgrep \
|
||||||
|
tmux \
|
||||||
|
tree \
|
||||||
|
zellij \
|
||||||
|
zsh
|
||||||
|
{{ end }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue