This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| steven@steven-legion:~$ sudo nano /usr/share/X11/xorg.conf.d/40-libinput.conf | |
| Make your touchpad section look like: | |
| Section "InputClass" | |
| Identifier "libinput touchpad catchall" | |
| MatchIsTouchpad "on" | |
| MatchDevicePath "/dev/input/event*" | |
| Driver "libinput" | |
| Option "Tapping" "True" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo -i | |
| echo "blacklist ideapad-laptop" >> /etc/modprobe.d/blacklist.conf | |
| modprobe -r ideapad-laptop | |
| exit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Check the lines that are enable: | |
| cat /proc/acpi/wakeup | |
| Disable one by one until sleep works: | |
| echo [Device] | sudo tee /proc/acpi/wakeup | |
| In my case this one was the problem: | |
| echo XHC | sudo tee /proc/acpi/wakeup |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Create this file with: | |
| sudo nano /usr/share/X11/xorg.conf.d/10-nvidia-brightness.conf | |
| Write in the file: | |
| Section "Device" | |
| Identifier "Device0" | |
| Driver "nvidia" | |
| VendorName "NVIDIA Corporation" | |
| BoardName "GeForce RTX 2060 Mobile" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install alsa-tools-gui | |
| hdajackretask |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Use the following command: | |
| ls /sys/class/backlight/ | |
| If you have 'intel_backlight' | |
| sudo nano /usr/share/X11/xorg.conf.d/20-intel.conf | |
| and write: | |
| Section "Device" |