You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,21 +28,25 @@ One on each terminal, so they won't conflict with each other.
28
28
## Distributions
29
29
There are some distribution files in releast page. Please download and run `Shibuya-vX.Y.Z.(AppImage|zip|exe)` according to your platform.
30
30
Currently there's no `Code Signing` in our distributions, so your defender might block you from using the application. Please allow install to use the distributions.
31
-
#### MacOS (.zip)
31
+
32
+
_**Sensitive informations are stored only at your own machine. No one can see them.**_
33
+
34
+
#### MacOS X (.zip)
32
35
Extract from dmg might say they are broked, it's because it's been blocked by the Gatekeeper. You can download the `.zip` file and extract `.app` from it, and run the `.app` file directly to give you chance bypassing the Gatekeeper.
33
36
#### Windows (.exe)
34
37
To install the application, Windows Defender SmartScreen might block you, please select **More info** and choose **Run anyway**.
35
38
#### Linux (.AppImage)
36
39
You can download and run the `.AppImage` file directly by double-clicking the binary on a linux desktop destribution.
37
-
If you are using terminal, you might want to give it execute permissions and disable sanbox to run it normally.
40
+
If you couldn't run it by double-click it, open a terminal and run following command to give it execute permission:
38
41
```sh
39
-
# Assume we have the application <application-name>.AppImage
40
42
chmod +x <application-name>.AppImage
41
-
<application-name>.AppImage --no-sandbox
42
43
```
43
-
44
-
> Sensitive informations are stored only at your own machine. No one can see them.
45
-
44
+
If you want to continue run the app using terminal after applied execute permission, run following command:
45
+
```sh
46
+
/path/to/<application-name>.AppImage --no-sandbox
47
+
```
48
+
> Note: Remove the `--no-sandbox` flag might cause problem at startup, as chromium might not allow this to happen.
0 commit comments