Ubuntu 14.04 LTS 开机自动打开浏览器、vlc播放器等

前端之家收集整理的这篇文章主要介绍了Ubuntu 14.04 LTS 开机自动打开浏览器、vlc播放器等前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. 安装upstart

sudo apt-get install upstart


2. 安装 vlc 播放器

sudoapt-get install vlc


3. 安装谷歌

去除login keyring,谷歌钥匙串,命令行手动执行,在本地,不用 root

python -c "import gnomekeyring;gnomekeyring.change_password_sync('login','g3nt00567','');"


4. 编写写开机自动启动程序

chrome.conf

start on desktop-start
stop on desktop-end
exec /usr/bin/google-chrome --start-fullscreen --app=http://www.baidu.com


vlc.conf

start on desktop-start
stop on desktop-end
exec /usr/bin/vlc --fullscreen --loop /home/setup/Desktop/video.avi


5.开机自启

将写好的程序chrome.conf 或 vlc.conf 放到~/.config/upstart 目录下即可。

原文链接:/ubuntu/353848.html

猜你在找的Ubuntu相关文章