See here.
-
pacman -Syu mesa xf86-video-intel nvidia bumblebee
-
sudo gpasswd -a user bumblebee
(replace user with your username) -
sudo systemctl enable bumblebeed.service
-
If tlp is installed and enabled:
-
Find the address of the GPU with
lspci | grep 3D
(First column, such as01:00.0
) -
Edit
/etc/default/tlp
:... RUNTIME_PM_BLACKLIST="01:00.0" ...
-
-
Reboot
Adding this to my ~/.Xresources
has solved 90% of scaling for me (120 for 125% scaling):
~/.Xresources
Xft.dpi: 120 Xft.autohint: 0 Xft.lcdfilter: lcddefault Xft.hintstyle: hintfull Xft.hinting: 1 Xft.antialias: 1 Xft.rgba: rgb ...
-
Packages:
-
tlp
-
acpi_call
-
Some buttons (Fn+F11
, Fn+F12
) have a keycode above 255 and are
thus not supported by X. They can be remapped using:
-
pacman -Syu acpi
-
sudo systemctl enable acpid.service
-
Modify
/etc/acpi/handler.sh
:/etc/acpi/handler.sh
# ... ibm/hotkey) case "$4" in 00001311) logger 'Favorites' /etc/acpi/actions/favorites-key.sh ;; 00001315) logger 'Keyboard' /etc/acpi/actions/keyboard-key.sh ;; *) logger "ACPI action undefined: $1 : $2 : $3 : $4" ;; esac ;; # ...
-
Modify
/etc/udev/hwdb.d/90-thinkpad-keyboard.hwdb
:/etc/udev/hwdb.d/90-thinkpad-keyboard.hwdb
evdev:name:ThinkPad Extra Buttons:dmi:bvn*:bvr*:bd*:svnLENOVO*:pn* KEYBOARD_KEY_45=prog1 KEYBOARD_KEY_49=prog2
-
sudo udevadm hwdb --update
-
sudo udevadm trigger --sysname-match="event*"