更改默认的访客会话启动器应用程序?


14

是否可以更改启动器上用于来宾会话的默认应用程序?

例如:

  • 删除:Amazon webapp,Ubuntu One,系统选项
  • 添加:恒星

(Ubuntu 12.04及更高版本)。

感谢您的时间和答复。

Answers:


16

创建文件夹(/etc/guest-session/如果不存在)

sudo mkdir /etc/guest-session/

然后打开文件 /etc/guest-session/prefs.sh

sudo nano /etc/guest-session/prefs.sh

并添加以下内容

FILE="$HOME/.config/autostart/configure-launcher.desktop"

cat << EOF > "$FILE"
[Desktop Entry]
Name=Configure launcher items
Type=Application
Exec=gsettings set com.canonical.Unity.Launcher favorites "['application://firefox.desktop', 'application://nautilus.desktop', 'application://stellarium.desktop']"
EOF

chown -R "$USER:$USER" "$FILE"

application://...项目更改为您想要在启动器中显示的内容。

这将为来宾会话创建自动启动命令,以更改启动器项目。

您可以使用获取当前的启动器项目

gsettings get com.canonical.Unity.Launcher favorites 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.