~install.sh to use gnu stow now as well as a few more changes
No files dependency
This commit is contained in:
24
install.sh
24
install.sh
@@ -1,18 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
dir=~/Dotfiles;
|
||||
files=`cat $dir/files`;
|
||||
folders=`find . -maxdepth 1 -type 'd' -not -name '.git' -not -name '.'`;
|
||||
|
||||
# Symlink profiles
|
||||
for file in $files; do
|
||||
echo "Creating symlink for " + $file;
|
||||
ln -s $dir/$file ~/.$file;
|
||||
for pkg in $folders; do
|
||||
echo "Stowing " $pkg;
|
||||
stow $pkg
|
||||
done
|
||||
|
||||
## Symlink to .config
|
||||
ln -s $dir/rofi.conf ~/.config/rofi/config
|
||||
ln -s $dir/kitty.conf ~/.config/kitty/config
|
||||
|
||||
# Generate folders
|
||||
mkdir ~/Text;
|
||||
mkdir ~/Code;
|
||||
@@ -21,18 +16,9 @@ mkdir ~/Code/Projects;
|
||||
mkdir ~/Code/Templates;
|
||||
mkdir ~/School;
|
||||
|
||||
touch ~/Text/notes.org;
|
||||
touch ~/Text/todo.org;
|
||||
touch ~/Text/calendar.org;
|
||||
|
||||
# get templates
|
||||
declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate"
|
||||
"NodeTemplate" "ArduinoTemplate");
|
||||
for template in ${templates[@]}; do
|
||||
git clone https://github.com/Oreodave/$template ~/Code/Templates/$template;
|
||||
git clone https://github.com/odavep/$template ~/Code/Templates/$template;
|
||||
done
|
||||
|
||||
# get doom emacs
|
||||
git clone https://github.com/hlissner/doom-emacs ~/.emacs.d
|
||||
~/.emacs.d/bin/doom install;
|
||||
~/.emacs.d/bin/doom sync;
|
||||
|
||||
Reference in New Issue
Block a user