Add installation and uninstallation guide
This commit is contained in:
parent
b9cab71d26
commit
b28a7774bf
1 changed files with 17 additions and 0 deletions
17
README.md
17
README.md
|
@ -17,3 +17,20 @@ This list contains programs that are directly called by some script/alias/etc..
|
||||||
- fireplace
|
- fireplace
|
||||||
- osu!boot
|
- osu!boot
|
||||||
- many extraction tools (7z, bzip, etc.), see function.sh#extract().
|
- many extraction tools (7z, bzip, etc.), see function.sh#extract().
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
### User-wide
|
||||||
|
```bash
|
||||||
|
git clone https://git.staropensource.de/JeremyStarTM/punktdateien-bashrc.git ${HOME}/.bashrc.d
|
||||||
|
echo "source \${HOME}/.bashrc.d/startup.sh" >> ${HOME}/.bashrc
|
||||||
|
```
|
||||||
|
... now restart your shell.
|
||||||
|
### System-wide
|
||||||
|
```bash
|
||||||
|
git clone https://git.staropensource.de/JeremyStarTM/punktdateien-bashrc.git /etc/bashrc.d
|
||||||
|
echo -e "export BASHRCD_SYSTEM=true\nsource /etc/bashrc.d/startup.sh" >> /etc/bash.bashrc
|
||||||
|
```
|
||||||
|
... now restart your shell.
|
||||||
|
|
||||||
|
## Uninstallation
|
||||||
|
Simply remove `${HOME}/.bashrc.d` or `/etc/bashrc.d` (depending on your installation method) and the `source .../startup.sh` line (+ `export BASHRCD_SYSTEM=true` for system-wide installs).
|
||||||
|
|
Loading…
Reference in a new issue