forked from ArcticTheRogue/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
462 B
39 lines
462 B
#start |
|
echo Installing Arctic/dotfiles |
|
|
|
#bspwm |
|
cd ./bspwm |
|
mkdir ~/.config/bspwm |
|
cp -v ./bspwmrc ~/.config/bspwm |
|
cd .. |
|
|
|
#sxhkd |
|
cd ./sxhkd |
|
mkdir ~/.config/sxhkd |
|
cp -v ./sxhkdrc ~/.config/sxhkd |
|
cd .. |
|
|
|
#polybar |
|
cd ./polybar |
|
mkdir ~/.config/polybar |
|
cp -v ./config ~/.config/polybar |
|
cd .. |
|
|
|
#Xresources |
|
cd ./Xresources |
|
cp -v ./.Xresources ~ |
|
cd .. |
|
|
|
#xinitrc |
|
cd ./xinitrc |
|
cp -v ./.xinitrc ~ |
|
cd .. |
|
|
|
#bashrc |
|
cd ./bashrc |
|
cp -v ~ |
|
cd .. |
|
|
|
#ending |
|
echo Finished Installing |
|
exit
|
|
|