budgie桌面 相关问题解决

  • chrome 突然启动非常慢(archlinux+budgie10.2.1)
  • budgie 设置中心不能授权

首先记录先第一个问题

其实需要设置gnome-keyring-daemon开机启动就好了

  • 创建一个启动程序 “gnome-keyring-daemon.desktop”放到”~/.config/autostart”下或者”/etc/xdg/autostart”下
  • 启动文件的内容如下:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    [Desktop Entry]
    Type=Application
    Exec=/usr/bin/gnome-keyring-daemon
    Hidden=false
    NoDisplay=true
    X-GNOME-Autostart-enabled=true
    Name[en_US]=Gnome Keyring Daemon
    Name=Gnome Keyring Daemon
    Comment[en_US]=Load gnome keyring daemon
    Comment=Load gnome keyring daemon

第二个问题和第一个雷同

  • 首先安装polkit和polkit-gnome

    1
    sudo pacman -S polkit polkit-gnome
  • 然后设置一个polkit-gnome.desktop开机文件放到”~/.config/autostart”下或者”/etc/xdg/autostart”下

  • 启动文件的内容如下:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    [Desktop Entry]
    Name=PolicyKit Authentication Agent
    Comment=PolicyKit Authentication Agent
    Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
    Terminal=false
    Type=Application
    Categories=
    NoDisplay=true
    OnlyShowIn=GNOME;XFCE;Unity;

重启后问题解决!