Skip to content

Commit 0c4e354

Browse files
committed
Update README for new linux install instructions
1 parent 52847ad commit 0c4e354

File tree

1 file changed

+43
-5
lines changed

1 file changed

+43
-5
lines changed

README.md

Lines changed: 43 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,52 @@ Currently, we target the following package types:
2828
- pacman (Arch Linux, Manjaro)
2929
- zip (any, portable)
3030

31-
Please refer to your distribution's documentation on information on how to install these packages, but we try some of them like this:
32-
- `AppImage` are runnable binaries, so to install them just run them.
33-
- `deb` can be installed running: `sudo dpkg -i <downloaded file>.deb`
34-
- `pacman` can be installed running: `sudo pacman -U <downloaded file>.pacman`
35-
> AUR builds are highly recommended instead. Install [notion-app](https://aur.archlinux.org/packages/notion-app/) or [notion-app-enhanced](https://aur.archlinux.org/packages/notion-app-enhanced) respectively.
31+
#### AppImage
32+
33+
AppImages are binary installers that are compatible with any Linux distribution, to install them you can just run them.
34+
35+
#### deb
36+
37+
You can add our repository to your package manager by running
38+
39+
```
40+
sudo apt-add-repository 'deb [trusted=yes] https://apt.fury.io/notion-repackaged/ /'
41+
```
42+
43+
> :information_source: For the new repository to be able to provide our packages, you will have to run `sudo apt update` first
44+
45+
With that you will be able to install `notion-app` or `notion-app-enhanced` using `sudo apt install <package name>`
46+
47+
Alternatively, download manually and run `sudo dpkg -i <downloaded file>.deb` to install the package.
48+
49+
#### rpm
50+
51+
> :warning: These instructions assume you are using dnf/yum in Fedora or alikes. Instructions might vary depending on the distribution you are using.
52+
53+
You can add our repository to your package manager by creating the file `/etc/yum.repos.d/notion-repackaged.repo` with the following contents:
54+
55+
```
56+
[notion-repackaged]
57+
name=Notion Repackaged Repo
58+
baseurl=https://yum.fury.io/notion-repackaged/
59+
enabled=1
60+
gpgcheck=0
61+
```
62+
63+
With that you will be able to install `notion-app` or `notion-app-enhanced` using `sudo dnf install <package name>`
64+
65+
Alternatively, download manually and run `sudo rpm -i <downloaded file>.rpm` to install the package.
66+
67+
#### pacman
68+
69+
You can install the [notion-app](https://aur.archlinux.org/packages/notion-app/) or [notion-app-enhanced](https://aur.archlinux.org/packages/notion-app-enhanced) packages for the vanilla or enhanced versions respectively.
70+
71+
Alternatively, download manually and run `sudo pacman -U <downloaded file>.pacman` to install the package.
3672

3773
### MacOS
3874

75+
> :warning: As of now, the M1 (arm64) build is non-functional due to [electron-userland/electron-builder#5850](https://github.com/electron-userland/electron-builder/issues/5850), you can try using the regular build thanks to Rosetta. You can also try using the arm64 zip build that might work.
76+
3977
We also build the enhanced variant for MacOS but there are no concrete instructions as I have no way of trying the builds for myself.
4078

4179
In theory, you should be able to download the `dmg` build and drag it to your dock to install it.

0 commit comments

Comments
 (0)