0

I have an Asus VivoBook S532FL, when I boot Kubuntu 20.04, the lock screen shown in screenpad, and the config of the display are wrong, I mean when I move left to right it's move cursor up to the bottom

I fix screenpad problem in Kubuntu environment by config multi display in setting, I can disable screenpad too but it doesn't affect on boot and lockscreen

how can I config multi display for lock screen?

1 Answers1

0

Finally by putting following config to /usr/share/sddm/scripts/Xsetup you can turn screen pad off:

#!/bin/sh

to find display

xrandr | grep ' connected'

Xsetup - run as root before the login dialog appears

if [ -e /sbin/prime-offload ]; then echo running NVIDIA Prime setup /sbin/prime-offload /sbin/prime-offload fi xrandr --output HDMI-1 --off xrandr --output eDP-1 --mode 1920x1080 --pos 0x0 --rotate normal xrandr --output HDMI-1-1 --off xrandr --output eDP-1-1 --mode 1920x1080 --pos 0x0 --rotate normal