update readme

This commit is contained in:
ksyasuda 2021-11-26 17:56:06 -08:00
parent f2100823e4
commit cc9f7e7a44

View File

@ -19,6 +19,9 @@
- [Installing](#installing) - [Installing](#installing)
- [Arch Linux](#arch-linux) - [Arch Linux](#arch-linux)
- [Manual Install](#manual-install) - [Manual Install](#manual-install)
- [Install the Dependencies](#install-the-dependencies)
- [Clone the repo](#clone-the-repo)
- [Run setup script](#run-setup-script)
- [Aniwrapper Menus](#aniwrapper-menus) - [Aniwrapper Menus](#aniwrapper-menus)
- [Search Anime](#search-anime) - [Search Anime](#search-anime)
- [Anime Selection](#anime-selection) - [Anime Selection](#anime-selection)
@ -90,19 +93,26 @@ yay -S aniwrapper-git
To install manually, make sure the dependencies are installed first To install manually, make sure the dependencies are installed first
The folowing command can be used on Arch Linux to ensure the prereqisites are installed ### Install the Dependencies
```sh ```sh
# Arch
pacman -S --needed grep curl sed mpv ffmpeg rofi sqlite3 pacman -S --needed grep curl sed mpv ffmpeg rofi sqlite3
# Debian
apt-get install grep curl sed mpv ffmpeg rofi sqlite3
``` ```
Next, clone the Git repository and switch directories into the cloned repo ### Clone the repo
Use the following command to clone the Git repository locally and switch into the cloned directory
```sh ```sh
git clone https://github.com/ksyasuda/aniwrapper git clone https://github.com/ksyasuda/aniwrapper && cd aniwrapper
cd aniwrapper
``` ```
### Run setup script
After switching into the `aniwrapper` directory, run the following commands to set up and install the script After switching into the `aniwrapper` directory, run the following commands to set up and install the script
```sh ```sh