Remove KDE 6 lock screen shake

-

Overview

When the password is wrong on the KDE 6 lock screen, the input field shakes left and right.

Environment

Fixes

Remove the login failure animation in SDDM

Remove rejectPasswordAnimation.start() from Main.qml.

$ /bin/ls /usr/share/sddm/themes/01-breeze-fedora/
Background.qml      Login.qml  Messages.sh        default-logo.svg  metadata.desktop  theme.conf
KeyboardButton.qml  Main.qml   SessionButton.qml  faces             preview.png
diff --git a/Main.qml b/Main.qml
index f0e8bd4..8093944 100644
--- a/Main.qml
+++ b/Main.qml
@@ -506,7 +506,6 @@ Item {
             footer.enabled = true
             mainStack.enabled = true
             userListComponent.userList.opacity = 1
-            rejectPasswordAnimation.start()
         }
         function onLoginSucceeded() {
             //note SDDM will kill the greeter at some random point after this

Reference

Remove the lock screen failure animation

Install a custom shell package

$ kpackagetool6 --install /usr/share/plasma/shells/org.kde.plasma.desktop/
/var/home/scarf/.local/share/kpackage/generic/org.kde.plasma.desktop/ installed successfully
$ cd /var/home/scarf/.local/share/kpackage/generic/org.kde.plasma.desktop/

Edit the installed theme:

diff --git a/contents/lockscreen/LockScreenUi.qml b/contents/lockscreen/LockScreenUi.qml
index 2bcecd7..1f5da10 100644
--- a/contents/lockscreen/LockScreenUi.qml
+++ b/contents/lockscreen/LockScreenUi.qml
@@ -49,7 +49,6 @@ Item {
             lockScreenUi.handleMessage(msg);
             graceLockTimer.restart();
             notificationRemoveTimer.restart();
-            rejectPasswordAnimation.start();
         }
 
         function onSucceeded() {

Upgrade the custom shell package

kpackagetool6 --type Plasma/Shell --upgrade /var/home/scarf/.local/share/kpackage/generic/org.kde.plasma.desktop/
Upgrading package from file: /var/home/scarf/.local/share/kpackage/generic/org.kde.plasma.desktop/
/var/home/scarf/.local/share/plasma/shells/org.kde.plasma.desktop/ upgraded

Test

$ /usr/libexec/kscreenlocker_greet --testing --shell=/var/home/scarf/.local/share/plasma/shells/org.kde.plasma.desktop/

References