cd .config
mkdir autostart
cd autostart/
touch my.desktop
my.desktop 文件内容如下:
[Desktop Entry]
Type=Application
Exec=chromium-browser --incognito --disable-session-crashed-bubble --disable-popup-blocking --no-first-run --disable-desktop-notifications --kiosk "http://www.example.com"
重启系统生效
参数解释:
--incognito --disable-session-crashed-bubble
: 去除因浏览器异常关闭右上角出现的恢复界面
http://www.example.com
:你自己所需要替换的网页地址
将my.desktop
文件放到 /usr/share/xsessions
中,并且删除其余desktop
文件(建议备份)重启即可生效
在/etc/profile
中第一句加上上述命令也可以启动
注意:上述方式都会在桌面加载之前执行
“The first 90% of the code accounts for the first 90% of the development time. The remaining 10% of the code accounts for the other 90% of the development time.” – Tom Cargill
标 题:Linux设置Chrome开机自启动