This repository was archived by the owner on Jun 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +1266
-289
lines changed Expand file tree Collapse file tree 8 files changed +1266
-289
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ curl https://plexus.robt.me/install.sh | sudo bash
13
13
Alternatively, you can manually install Plexus to a custom location on your device.
14
14
Install any missing dependencies and create all of the temporary folders required:
15
15
``` bash
16
- sudo apt-get install curl ffmpeg unzip -y mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted /tmp/plexus/rclone
16
+ sudo apt-get install curl ffmpeg unzip -y
17
+ mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted $HOME /.config/plexus
17
18
```
18
19
19
20
Next, download the executable itself:
Original file line number Diff line number Diff line change @@ -57,7 +57,11 @@ <h3 class="block-title">Manual</h3>
57
57
< br >
58
58
< p > Install any missing dependencies and create all of the temporary folders required:</ p >
59
59
< p > < code > sudo apt-get install curl ffmpeg unzip -y</ code > </ p >
60
- < p > < code > mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted /tmp/plexus/rclone</ code > </ p >
60
+ < p > < code > mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted "$HOME"/.config/plexus</ code > </ p >
61
+ < br >
62
+ < p > Download the default config file and move it into the correct location:</ p >
63
+ < p > < code > curl -O https://plexus.robt.me/versions/releases/latest/plexus.conf</ code > </ p >
64
+ < p > < code > mv plexus.conf "$HOME"/.config/plexus/</ code > </ p >
61
65
< br >
62
66
< p > Next, download the executable itself:</ p >
63
67
< p > < code > curl -O https://plexus.robt.me/versions/releases/latest/plexus</ code > </ p >
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- printf " \\ n\\ e[93m=== Plexus v0.6 - Developed by Robert Thomas ==="
2
+ printf " \\ n\\ e[93m=== Plexus v0.7 - Developed by Robert Thomas ==="
3
3
printf " \\ n=== https://github.com/Wolveix/plexus ==="
4
4
printf " \\ n\\ e[32mInstalling missing dependencies.\\ n\\ n\\ e[94m"
5
5
apt-get install curl ffmpeg unzip -y
6
6
printf " \\ n\\ e[32mCreating directories if they don't already exist.\\ n\\ e[94m"
7
- mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted /tmp /plexus/rclone
7
+ mkdir -p /mnt/plexus /tmp/plexus /tmp/plexus/encode /tmp/plexus/encode/convert /tmp/plexus/encode/converted $HOME /.config /plexus
8
8
rclone_version=$( rclone -V)
9
9
if [[ " $rclone_version " != * " os/arch: " * ]]; then printf " \\ n\\ e[32mInstalling RClone.\\ n\\ n\\ e[94m" ; curl https://rclone.org/install.sh | sudo bash; printf " \\ e[32mRClone installed.\\ n" ; fi
10
10
rclone_remotes=$( rclone listremotes)
11
11
if [ -z " $rclone_remotes " ]; then printf " \\ n\\ e[32mYou don't have any RClone remotes setup. Set one up by running 'rclone config'\\ n\\ n\\ e[94m" ; fi
12
12
cd /tmp/plexus || exit
13
+ curl -O https://plexus.robt.me/versions/releases/latest/plexus.conf
14
+ mv plexus.conf " $HOME " /.config/plexus/
13
15
curl -O https://plexus.robt.me/versions/releases/latest/plexus
14
16
chmod u+x plexus
15
17
Original file line number Diff line number Diff line change @@ -54,10 +54,16 @@ <h2 class="section-title">Downloads</h2>
54
54
</ tr >
55
55
</ thead >
56
56
< tbody >
57
+ < tr >
58
+ < th scope ="row "> 0.7</ th >
59
+ < td > < a href ="https://plexus.robt.me/versions/releases/v0.7/plexus "> Link</ a > </ td >
60
+ < td > < a href ="https://github.com/Wolveix/Plexus/commit/? " target ="_blank "> ?</ a > </ td >
61
+ < td > < a href ="https://github.com/Wolveix "> @Wolveix</ a > </ td >
62
+ </ tr >
57
63
< tr >
58
64
< th scope ="row "> 0.6</ th >
59
65
< td > < a href ="https://plexus.robt.me/versions/releases/v0.6/plexus "> Link</ a > </ td >
60
- < td > < a href ="https://github.com/Wolveix/Plexus/commit/? " target ="_blank "> ? </ a > </ td >
66
+ < td > < a href ="https://github.com/Wolveix/Plexus/commit/44ad193aaf698e64f268aeb6b83a62f4830c0823 " target ="_blank "> ff7fd08 </ a > </ td >
61
67
< td > < a href ="https://github.com/Wolveix "> @Wolveix</ a > </ td >
62
68
</ tr >
63
69
< tr >
@@ -66,6 +72,12 @@ <h2 class="section-title">Downloads</h2>
66
72
< td > < a href ="https://github.com/Wolveix/Plexus/commit/44ad193aaf698e64f268aeb6b83a62f4830c0823 " target ="_blank "> 44ad193</ a > </ td >
67
73
< td > < a href ="https://github.com/Wolveix "> @Wolveix</ a > </ td >
68
74
</ tr >
75
+ < tr >
76
+ < th scope ="row "> 0.4</ th >
77
+ < td > < a href ="https://github.com/Wolveix/Plexus/archive/v0.4.zip "> Link</ a > </ td >
78
+ < td > < a href ="https://github.com/Wolveix/Plexus/commit/651bcf7ec7918fdd57c405093a2d5af20d4f0d6a " target ="_blank "> 651bcf7</ a > </ td >
79
+ < td > < a href ="https://github.com/Wolveix "> @Wolveix</ a > </ td >
80
+ </ tr >
69
81
</ tbody >
70
82
</ table >
71
83
</ div >
You can’t perform that action at this time.
0 commit comments