2021-12-05 19:29:43 +00:00
|
|
|
# Elder Scrolls Online Commadline Addon Manager
|
|
|
|
|
2021-12-14 22:21:42 +00:00
|
|
|
Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater.
|
2021-12-05 19:29:43 +00:00
|
|
|
|
2021-12-05 20:09:32 +00:00
|
|
|
[MIT License](LICENSE)
|
|
|
|
|
2022-01-11 18:34:34 +00:00
|
|
|
It is recommended that you back up your ESO live profile before using `eso-banana` in case you want to revert back.
|
2021-12-14 22:21:42 +00:00
|
|
|
|
|
|
|
On Windows, press `Windows Key + e` to open a file explorer and enter the following path in the address bar:
|
|
|
|
|
|
|
|
```
|
|
|
|
%HOME%\Documents\Elder Scrolls Online\
|
|
|
|
```
|
|
|
|
|
2022-01-05 22:48:39 +00:00
|
|
|
or on Windows 11
|
|
|
|
|
|
|
|
```
|
|
|
|
Documents\Elder Scrolls Online\
|
|
|
|
```
|
|
|
|
|
2021-12-14 22:21:42 +00:00
|
|
|
Make a copy of the `live` folder and rename it to something meaningful like `old` or `backup`.
|
|
|
|
|
2022-01-05 23:58:44 +00:00
|
|
|
# Usage
|
|
|
|
|
|
|
|
Follow the installation instructions for your `platform`:
|
|
|
|
|
|
|
|
- [Windows](#windows-installation)
|
|
|
|
- [Linux](#linux-installation)
|
|
|
|
|
2022-06-08 23:37:10 +00:00
|
|
|
On first run, the `addons.text` file will be created in your ESO live directory.
|
2022-01-05 23:58:44 +00:00
|
|
|
It will look similar to the following:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
addons:
|
|
|
|
- https://www.esoui.com/downloads/info7-LibAddonMenu.html
|
|
|
|
- https://www.esoui.com/downloads/info1245-TamrielTradeCentre.html
|
|
|
|
- https://www.esoui.com/downloads/info1146-LibCustomMenu.html
|
|
|
|
```
|
|
|
|
|
|
|
|
Add the ESOUI url for each additional addon you wish to keep updated.
|
|
|
|
Make sure to prefix each URL line with a dash and a space (`- `).
|
|
|
|
|
2021-12-05 20:09:32 +00:00
|
|
|
# Windows Installation
|
2021-12-05 19:29:43 +00:00
|
|
|
|
2022-01-05 22:48:39 +00:00
|
|
|
Install the latest Python 3 using the installer provided by [python.org](https://www.python.org/downloads/windows/).
|
2022-01-06 00:13:51 +00:00
|
|
|
When the python installer asks, [add python to PATH](https://docs.python.org/3/using/windows.html#installation-steps).
|
2022-01-05 22:48:39 +00:00
|
|
|
|
|
|
|
Open [Windows Terminal](https://www.microsoft.com/en-US/p/windows-terminal/9n0dx20hk701) or any windows command prompt and navigate to this project.
|
|
|
|
Use the Python package manager PIP to install `eso-banana`.
|
|
|
|
|
|
|
|
```powershell
|
|
|
|
cd .\eso-banana\
|
|
|
|
pip install .
|
|
|
|
```
|
|
|
|
|
|
|
|
Once the project is installed to python's packages you may invoke the addon script with the following command:
|
|
|
|
|
|
|
|
```powershell
|
|
|
|
eso-banana-script.exe
|
|
|
|
```
|
|
|
|
|
|
|
|
To schedule a periodic background run of `eso-banana`, open Powershell as a user and enter the following commands.
|
|
|
|
|
|
|
|
```powershell
|
2022-01-05 23:20:32 +00:00
|
|
|
$Command = (Get-Command "eso-banana-script.exe").Source
|
2022-01-06 00:24:26 +00:00
|
|
|
$Action = New-ScheduledTaskAction -Execute $Command -Argument "--log"
|
2022-01-05 22:48:39 +00:00
|
|
|
$Trigger = New-ScheduledTaskTrigger -Daily -At 11am
|
|
|
|
$Settings = New-ScheduledTaskSettingsSet -RunOnlyIfNetworkAvailable -StartWhenAvailable -RunOnlyIfIdle
|
|
|
|
Register-ScheduledTask -TaskName "eso-banana" -Action $Action -Trigger $Trigger -Settings $Settings -Description "Elder Scrolls Online addon manager and a Tamriel Trade Centre price table updater."
|
|
|
|
```
|
|
|
|
|
|
|
|
To check to make sure the task is registered correctly, enter `Get-ScheduledTask` and check that the first entry looks similar:
|
|
|
|
|
|
|
|
```
|
|
|
|
TaskPath TaskName State
|
|
|
|
-------- -------- -----
|
|
|
|
\ eso-banana Ready
|
|
|
|
```
|
2022-01-05 23:45:02 +00:00
|
|
|
# Windows Unschedule
|
|
|
|
|
|
|
|
Only run the following command if you wish to remove scheduled run of `eso-banana`.
|
|
|
|
|
|
|
|
To remove the schedule, use the `Unregister-ScheduledTask` command:
|
|
|
|
|
|
|
|
```
|
|
|
|
Unregister-ScheduledTask eso-banana
|
|
|
|
```
|
|
|
|
|
|
|
|
Press enter to confirm removal.
|
2021-12-05 20:09:32 +00:00
|
|
|
|
2022-01-05 23:23:54 +00:00
|
|
|
# Linux Installation
|
|
|
|
|
2022-06-09 00:56:10 +00:00
|
|
|
The following instructions are for any linux system using systemd.
|
|
|
|
This include the Steam Deck.
|
2022-01-05 23:23:54 +00:00
|
|
|
|
|
|
|
```
|
2022-06-09 00:56:10 +00:00
|
|
|
cp banana.py /home/deck/
|
2022-06-09 01:22:38 +00:00
|
|
|
cp banana.timer banana.service /etc/systemd/system/
|
2022-06-09 00:56:10 +00:00
|
|
|
sudo systemctl enable banana.timer
|
2022-06-09 01:22:38 +00:00
|
|
|
sudo systemctl enable banana.service
|
2022-01-05 23:23:54 +00:00
|
|
|
```
|
|
|
|
|
2022-01-05 23:45:02 +00:00
|
|
|
# Linux Unschedule
|
|
|
|
|
|
|
|
Only run the following command if you wish to remove scheduled run of `eso-banana`.
|
|
|
|
|
|
|
|
```
|
2022-06-09 00:56:10 +00:00
|
|
|
systemctl list-timers --all
|
|
|
|
sudo systemctl disable banana.timer
|
2022-01-05 23:36:05 +00:00
|
|
|
```
|