I use KDE Itinerary 24.08.1 installed via the KDE Android Release Builds F-Droid channel. Is there any way to disable or accelerate the transition animations? On my wayland system setting Units.longDuration=0
and Units.shortDuration=0
via ~/.config/plasmarc
mostly gets me there.
@mimo1, you can set the animation scale AOSP-wide, just like you can in kcm_workspace
:
-
-
-
com.android.settings.Settings$ColorAndMotionActivity
-
Remove animations
This method obviously isn’t very useful unless you want to remove them and easily restore them to the default later.
-
-
-
com.android.settings.Settings$DevelopmentSettingsDashboardActivity
-
-
Window animation scale
-
Transition animation scale
-
Animator duration scale
-
This method is still GUI-based, but lets you set them to custom (albeit solely sane) values. They’re incremented integrally.
-
-
-
-
#!/usr/bin/env sh speed = 0.25 adb shell
-
-
settings put global window_animation_scale $speed
-
settings put global transition_animation_scale $speed
-
settings put global animator_duration_scale $speed
-
-
If these don’t affect KDE’s Kirigami applications, I’ll file a bug for it.