mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
12 lines
212 B
Bash
Executable File
12 lines
212 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get and stow dotfiles
|
|
sudo pacman -S stow
|
|
stow .
|
|
|
|
# Get aconfmgr and apply
|
|
mkdir -p ~/.git
|
|
git clone https://github.com/CyberShadow/aconfmgr.git ~/.git/aconfmgr
|
|
cd ~/.git/aconfmgr
|
|
./aconfmgr apply
|