updated README for 2024

main
Inga 🏳‍🌈 3 months ago
parent 84421d129e
commit 310d52e2a4
  1. 79
      README.md

@ -13,13 +13,17 @@ Disable secure boot and fn-lock in bios (so that F-keys work as F-keys by defaul
## Installing Alpine ## Installing Alpine
Follow https://wiki.alpinelinux.org/wiki/Installation Put alpine standard image on Ventoy USB, load it from Ventoy in GRUB mode.
Note that you will need to use Rufus; Ventoy does not work on this laptop (hangs after choosing the image). Follow https://wiki.alpinelinux.org/wiki/Installation
## Postinstall ## Postinstall
In `/etc/apk/repositories`, comment out 3.16, uncomment edge (main, community, testing), ```
doas apk add nano
```
In `/etc/apk/repositories`, comment out the version you installed, add edge (main, community, testing),
since some of the packages we're going to install (river, element-desktop) since some of the packages we're going to install (river, element-desktop)
only exist in testing. only exist in testing.
@ -29,29 +33,43 @@ doas apk update
doas apk upgrade doas apk upgrade
``` ```
(note that this might break GRUB: https://wiki.alpinelinux.org/wiki/Release_Notes_for_Alpine_3.20.0)
## Usable editor by default (not vi) ## Usable editor by default (not vi)
``` ```
doas apk add micro doas apk add micro
doas apk del nano
echo "export EDITOR=micro" >>.profile echo "export EDITOR=micro" >>.profile
echo "permit setenv { EDITOR=\$EDITOR } nopass :wheel as root" | tee -a /etc/doas.d/doas.conf echo "permit setenv { EDITOR=\$EDITOR } :wheel" | tee -a /etc/doas.d/doas.conf
```
## Login manager (needed for desktop)
``` ```
doas apk add elogind polkit-elogind
doas rc-update add elogind
doas rc-update add polkit
doas apk add greetd greetd-agreety
doas rc-update add greetd
```
Also: edit `/etc/inittab` and comment out line enabling `getty` on `tty1`,
otherwise both `agreety` and `getty` will run simultaneously, preventing login on `tty1`.
(_TODO: Find links._)
Reboot.
Make sure that everything works: log in on `tty1`, check that e.g. `XDG_RUNTIME_DIR` is set in `env`.
## Installing river ## Installing river
``` ```
doas apk add eudev doas apk add river river-doc
doas setup-udev
doas apk add mesa-dri-gallium mesa-va-gallium
doas apk add river river-doc mandoc
doas apk add adwaita-icon-theme foot ttf-dejavu doas apk add adwaita-icon-theme foot ttf-dejavu
doas rc-update add seatd doas setup-devd udev
doas rc-service seatd start doas apk add mesa-dri-gallium mesa-va-gallium
doas addgroup YOURUSER audio doas apk add
doas addgroup YOURUSER input
doas addgroup YOURUSER seat
doas addgroup YOURUSER video
doas addgroup YOURUSER wheel
install -Dm0755 /usr/share/doc/river/examples/init -t ~/.config/river install -Dm0755 /usr/share/doc/river/examples/init -t ~/.config/river
``` ```
@ -59,11 +77,17 @@ Also:
``` ```
doas apk add xwayland doas apk add xwayland
``` ```
because the latest river in testing is built in a way that requires xwayland. because the latest river in testing is built in a way that requires xwayland
(see also: https://github.com/riverwm/river/issues/913).
Try to run with Try to run with
``` ```
XDG_RUNTIME_DIR=/tmp river river
```
or
```
dbus-run-session -- river
``` ```
You should see the blue screen of river. Try to open terminal with Win+Shift+Enter. Try to exit with Win+Shift+E. You should see the blue screen of river. Try to open terminal with Win+Shift+Enter. Try to exit with Win+Shift+E.
@ -167,25 +191,8 @@ If it looks decent: change consolefont in `/etc/conf.d/consolefont` to `"ter-132
In order to not have to create wrapper scripts for all apps: In order to not have to create wrapper scripts for all apps:
Create `/usr/local/bin/inga-river` (and later `chmod +x /usr/local/bin/inga-river`) with the following (found in google): Create `/usr/local/bin/inga-river` (and later `chmod +x /usr/local/bin/inga-river`) with the [following content](global/usr/local/bin/inga-river).
```
#!/bin/sh
export GDK_BACKEND=wayland,x11
export MOZ_ENABLE_WAYLAND=1
export CLUTTER_BACKEND=wayland
export QT_QPA_PLATFORM=wayland-egl
export ECORE_EVAS_ENGINE=wayland-egl
export ELM_ENGINE=wayland_egl
export SDL_VIDEODRIVER=wayland
export _JAVA_AWT_WM_NONREPARENTING=1
export NO_AT_BRIDGE=1
export BEMENU_BACKEND=wayland
river $@
```
and replace `river` with `inga-river` in `/etc/greetd/environments`. and replace `river` with `inga-river` in `/etc/greetd/environments`.
### Keyring ### Keyring

Loading…
Cancel
Save