Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions versioned_docs/version-1.4/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ sudo apt install \

# Optional: lock screen authentication
sudo apt install libpam0g-dev

# Optional: systemd session integration (somewm-session, login manager entry)
sudo apt install systemd-dev

# Optional: SVG icon rendering
sudo apt install gir1.2-rsvg-2.0
```

### Fedora
Expand Down Expand Up @@ -140,6 +146,26 @@ sudo dnf install \
xcb-util-renderutil-devel
```

### Gentoo

:::note
SomeWM is not currently part of the official Gentoo Portage tree or the [GURU](https://wiki.gentoo.org/wiki/Project:GURU) project overlay. Use the third-party overlay below instead.
:::

SomeWM is packaged in the [somewm-gentoo-overlay](https://github.com/shuber2/somewm-gentoo-overlay):

```bash
eselect repository add somewm git https://github.com/shuber2/somewm-gentoo-overlay.git
emaint sync -r somewm

echo 'gui-wm/somewm ~amd64' >> /etc/portage/package.accept_keywords/somewm
emerge -av gui-wm/somewm
```

This installs somewm and all dependencies, building it from source via the ebuild. After installation, skip directly to [Launch](/docs/getting-started/first-launch).

A live `9999` ebuild (tracking `main`) and a `1.4.9999` ebuild (tracking the `release/1.4` branch) are also provided for those who want the latest changes.

### NixOS

A `default.nix` is provided for building on NixOS:
Expand Down
6 changes: 6 additions & 0 deletions versioned_docs/version-2.0/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,12 @@ sudo apt install \

# Optional: lock screen authentication
sudo apt install libpam0g-dev

# Optional: systemd session integration (somewm-session, login manager entry)
sudo apt install systemd-dev

# Optional: SVG icon rendering
sudo apt install gir1.2-rsvg-2.0
```

### Fedora
Expand Down