如何在 Gnome/Ubuntu 中更改壁纸转换速度?

如何在 Gnome/Ubuntu 中更改壁纸转换速度?

我写了一个如下脚本:

import subprocess
import time

while True:
    for i in range(3):
        subprocess.call(["dconf", "write", "/org/gnome/desktop/background/picture-uri", "'file://[my directory]"+str(i)+".png'"])
        time.sleep(.1)

其中0.png、1.png、2.png分别是纯红、蓝、绿图像。

现在我的目标是让我的桌面背景疯狂闪烁。然而,当我运行它时,Ubuntu 坚持以远远超过 0.1 秒的速度从一种颜色慢慢淡入另一种颜色。

如何改变或消除转换速度?

相关内容