diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3d9e819 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +dotfiles/.config/rofi/pywal-color/pywal-theme.rasi + diff --git a/README.md b/README.md new file mode 100644 index 0000000..b93848b --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +## my fish config + +# dependencies + +´´´ +- fish +- stow +- git +- make +´´´ + +Install these dependencies, then ```git clone https://git.k4li.me/pika/fish.git && cd fish/´´´ + +# installation + +Installation is done via stow which is done via the makefile. Just do ´´´make´´´ for installation and ´´´make remove´´´ for deinstallation. Be sure to backup your existing fish config, as stow will make a symlink to your '$HOME/.config' dir and thus it has to be empty. diff --git a/makefile b/makefile new file mode 100644 index 0000000..c7268a8 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +all: + stow --verbose --target=$$HOME --adopt --restow */ + +install: + stow --verbose --target=$$HOME --adopt --restow */ + +delete: + stow --verbose --target=$$HOME --delete */ + +remove: + stow --verbose --target=$$HOME --delete */