diff options
author | Camil Staps | 2023-02-17 09:33:16 +0100 |
---|---|---|
committer | Camil Staps | 2023-02-17 09:33:16 +0100 |
commit | 7e0f082dba51855e423700968d0c998899b5b813 (patch) | |
tree | 3538053a405303d8266f14956b077ce0d014e6e2 /yoga/README.md | |
parent | Add yoga-specific scripts for external monitor and network (diff) |
Add yoga installation notes
Diffstat (limited to 'yoga/README.md')
-rw-r--r-- | yoga/README.md | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/yoga/README.md b/yoga/README.md new file mode 100644 index 0000000..d7d2d12 --- /dev/null +++ b/yoga/README.md @@ -0,0 +1,30 @@ +Installation notes on the Yoga Slim 7, February 2023. +This is with Debian Bookworm, which is testing at the moment. + +### Graphics + +- Need `firmware-amd-graphics` from `non-free`, the `amdgpu` module. +- For the backlight we need `/etc/udev/rules.d/81-backlight.rules` to give the + `video` group permissions to change the backlight level; then we can write to + `/sys/class/backlight/amdgpu_bl0/brightness` (see `.i3/config`). + +### Wireless + +- Need `firmware-misc-nonfree` from `non-free`, the `mt7921` module. +- Use `rfkill` to list the wireless devices, then `rfkill unblock` to remove + the soft blocks. + +### Audio + +- Need `firmware-sof-signed` from `non-free`(?), as well as `pulseaudio`. + +### Battery saving + +``` +$ sudo apt install tlp +$ sudo systemctl enable tlp.service +$ sudo tlp start +``` + +and see the settings in `/etc/tlp.conf`. Especially CPU scaling is important to +reduce power usage on battery. |