You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
339 B
Bash
15 lines
339 B
Bash
#!/bin/sh
|
|
# Symlinks all the dotfiles to the necessary places.
|
|
|
|
ln -s alacritty ~/.config
|
|
ln -s .bashrc ~/.bashrc
|
|
ln -s dunst ~/.config
|
|
ln -s i3 ~/.config
|
|
ln -s makepkg.conf ~/.config
|
|
ln -s nvim ~/.config
|
|
ln -s picom ~/.config
|
|
ln -s polybar ~/.config
|
|
ln -s .tmux.conf ~/.tmux.conf
|
|
ln -s .xinitrc ~/.xinitrc
|
|
ln -s .Xresources ~/.Xresources
|