以/etc/xdg/kwinrulesrc为例:
$ cat /etc/xdg/kwinrulesrc
[1]
Description=dde-dock
desktop=-1
desktoprule=2
wmclass=dde-dock dde-dock
wmclasscomplete=true
wmclassmatch=1
[2]
Description=dde-launcher
strictgeometry=false
strictgeometryrule=2
wmclass=dde-launcher dde-launcher
wmclasscomplete=true
wmclassmatch=1它将在启动后自动启动。如何在不删除脚本的情况下永远禁用此脚本?
发布于 2023-02-26 10:27:43
1.创建一个~/.config/autostart目录。
2.将/etc/autostart/entry复制到~/.config/autostart/entry。
3.将Hidden=true添加到~/.config/autostart/entry中。例句:
# ~/.config/autostart/picom.desktop
[Desktop Entry]
Type=Application
Name=picom
GenericName=X Compositor
Icon=picom
Exec=picom
Hidden=truehttps://unix.stackexchange.com/questions/563403
复制相似问题