blob: 446e0e27a7d81952577d0c834cb02373af6791e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/bin/sh
# The fresh-install script generates all relevant directories.
# It is assumed that you have run:
# mkdir git && cd git && git clone "https://gabbott.dev/git/neodot"
# So the neodot repo is in $HOME/git.
# Then, fresh-install.sh will create all relevant directories and
# perform a normal install.
# Set the following to match your system:
PRIV="sudo" # or doas, ...
INSTALL_CMD="pacman -Syu" # or apt install, ...
SHELL="zsh"
# Create all relevant directories.
mkdir -p $HOME/dev $HOME/www $HOME/wr $HOME/.config $HOME/.local
mkdir -p $HOME/.local/share
# Link all cfg/ entries to the relevant $HOME/.config directory
ln -s "$HOME/git/neodot/cfg/profile" $HOME/.profile
ln -s "$HOME/git/neodot/cfg/zprofile" $HOME/.zprofile
ln -s "$HOME/git/neodot/cfg/fontconfig" $HOME/.config/fontconfig
ln -s "$HOME/git/neodot/cfg/helix" $HOME/.config/helix
ln -s "$HOME/git/neodot/cfg/nvim" $HOME/.config/nvim
ln -s "$HOME/git/neodot/cfg/river" $HOME/.config/river
ln -s "$HOME/git/neodot/cfg/zsh" $HOME/.config/zsh
ln -s "$HOME/git/neodot/cfg/zsh/.zshenv" $HOME/.zshenv
ln -s "$HOME/git/neodot/cfg/foot" $HOME/.config/foot
# Change system settings.
chsh -s /bin/$SHELL # Change shell.
|