在 Gnome 或 Unity 中,您可以通过将以下文件放在以下目录中来延迟应用程序的启动:
~/.config/autostart/firefox1.desktop
[Desktop Entry]
Type=Application
Name=Firefox
GenericName=Firefox
Comment=Sync Firefox
Exec=firefox ~/Desktop/map.html start -i
Icon=firefox
Hidden=false
NoDisplay=false
X-GNOME-Autostart-enabled=true
X-GNOME-Autostart-Delay=10
但是,x-gnome-autostart 命令在 Xubuntu 的 xfce 中不起作用。有没有办法在 xfce 中实现这一点?
答案1
如果命令需要在启动时(实际登录时)运行,您可以按照以下格式延迟该命令:
/bin/bash -c "sleep 15 && firefox"
您的参赛作品:
Hidden=false
NoDisplay=false
不会造成伤害,但没有必要,它们是默认的。
答案2
事实证明,使用此行作为 exec 可以在终端中打开它
xterm -e ‘睡眠 10 && Firefox’