Merge pull request #13 from Morpheus636/wip-linux-tips

Wip linux tips
This commit is contained in:
Josh Levin 2022-11-24 08:54:49 -05:00 committed by GitHub
commit 2f0585672d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 0 deletions

View file

@ -42,6 +42,7 @@ This repository and the resources within it are **COMPLETELY UNOFFICIAL** and no
- [Arch Wiki](https://wiki.archlinux.org/title/Framework_Laptop) - The arch wiki entry for the Framework Laptop.
- [LinuxLaptops Wiki](https://github.com/lhl/linuxlaptops/wiki/2022-Framework-Laptop-DIY-Edition-12th-Gen-Intel-Batch-1) - Wiki article with a ton of useful information specific to linux on the framework laptop.
- [Linux Battery Life Forum Thread](https://community.frame.work/t/linux-battery-life-tuning/6665) - This will be replaced (soon) by a page in this repo since this is outdated and (in some places) incorrect.
- [Common Problems](/linux/common-problems.md)
## Accessories

15
linux/common-problems.md Normal file
View file

@ -0,0 +1,15 @@
[Home](/README.md)
# Common Problems on Linux
## Contents
- [Brightness Keys Do Not Work](#brightness-keys-do-not-work)
## Brightness Keys Do Not Work:
The ambient light sensor takes over control of the screen brightness, preventing the keys from working. To fix this, create a file called `/etc/modprobe.d/framework-als-deactivate.conf` and add the following text to it:
```shell
blacklist hid_sensor_hub
```
<details>
<summary><b>DISCLAIMER</b></summary>
This repository and the resources within it are <b>COMPLETELY UNOFFICIAL</b> and not in any way endorsed or supported by Framework. Your use of these guides and projects is <b>AT YOUR OWN RISK</b> and <b>MAY VOID YOUR WARRANTY.</b> We ask that you do not reach out to Framework support about problems related to these resources, but you can feel free to reach out to the community maintainers via GitHub Discussions or Issues within this repository.
</details>