diff --git a/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html b/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html index 38d47d1f1..dc3dc12b3 100644 --- a/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html +++ b/Downloaders/qBittorrent/Tips/How-to-run-the-unRaid-mover-for-qBittorrent/index.html @@ -1137,21 +1137,30 @@ pip3 install qbittorrent-api

Edit the script with your favorite editor (VSCode/Notepad++) you downloaded at the beginning of the guide HERE.

You only need to edit a few options in the script

# --DEFINE VARIABLES--#
-# Set Number of Days to stop torrents for the move
-days = 2
-qbt_host = '192.168.2.200:8080'
-qbt_user = 'admin'
-qbt_pass = 'adminadmin'
+# Set Number of Days to stop torrents between two offsets
+# days_from set to 0 will pause any torrents from todays date
+# days_to will be the upper limit of how far you want to pause torrents to
+days_from = 0
+days_to = 2
+qbt_host = "192.168.2.200:8080"
+qbt_user = None
+qbt_pass = None
 # --DEFINE VARIABLES--#
 
-

If you don't use the unRaid Mover Tuning app, You might need to change line 54 from os.system('/usr/local/sbin/mover.old start') to os.system('/usr/local/sbin/mover start')

+

Depending on whether you use the unRaid Mover Tuning app, You might need to change line 68:

+

Copy script to your preferred location

Now it's time to place the script you just edited somewhere easy to access/remember.

@@ -1211,7 +1220,7 @@ pip3 install qbittorrent-api Last update: - September 15, 2022 19:18:58 + December 6, 2022 20:41:58