1
0
mirror of https://github.com/RyanGreenup/cadmus.git synced 2025-08-19 04:12:16 +02:00

Simplified Install

This commit is contained in:
ryangreenup
2020-07-13 00:22:22 +10:00
parent 46d442e779
commit 992073e9ff

View File

@@ -1,8 +1,20 @@
# cadmus # cadmus
Shell Scripts to Facilitate Effective Note Taking Shell Scripts to Facilitate Effective Note Taking
## Philosophy
Don't replicate work other people have done.
## Installation ## Installation
Use the script that basically [does this](#manually):
```bash
https://raw.githubusercontent.com/RyanGreenup/cadmus/master/install.sh?token=ALM54ERFSACJUIT7D5Q2L7S7CQ4QY | bash
```
### Manually
To install manually, satisfy [the dependencies](#Dependencies) and do something like this: To install manually, satisfy [the dependencies](#Dependencies) and do something like this:
```bash ```bash
@@ -10,12 +22,11 @@ cd ~/DotFiles
if [[ -d ".git" ]]; then if [[ -d ".git" ]]; then
echo "Adding Submodule"; echo "Adding Submodule";
git submodule add https://github.com/RyanGreenup/cadmus git submodule add https://github.com/RyanGreenup/cadmus
else echo "Cloning Repository"; else echo "Cloning Repository";
git clone add https://github.com/RyanGreenup/cadmus git clone https://github.com/RyanGreenup/cadmus
fi fi
command -v stow >/dev/null 2>&1 || { echo >&2 "I require stow but it's not installed. Aborting."; exit 1; }
stow -t $HOME -S cadmus stow -t $HOME -S cadmus
``` ```