Lubuntu 18.04 / lxpanel 0.9.3 意外删除了第二个工具栏

Lubuntu 18.04 / lxpanel 0.9.3 意外删除了第二个工具栏

屏幕左边缘创建了一个透明的自动隐藏按钮栏。上面有我最常用的所有程序。试图添加另一个程序时不小心点击了"Remove "Application Launch Bar" From PanelDelete This Panel。(笨拙的触摸板在手指抬起时会移动。)无论如何它消失了,现在无法在左边缘创建另一个按钮栏。位置边缘:左侧变灰。如何解决此问题?

答案1

查看/home/username/.config/lxpanel/Lubuntu/panels有两个文件,leftpanelpanel包含底部栏的预期设置,包括Plugin{}各种控件的部分。但是left只包含一个标题:

# lxpanel <profile> config file. Manually editing is not recommended.
# Use preference dialog in lxpanel to adjust config when you can.

Global {
    edge=left
    monitor=0
    height=32
    align=center
    width=50
    transparent=1
    background=0
    tintcolor=#ffffff
    alpha=80
    iconsize=21
    widthtype=request
    autohide=1
    heightwhenhidden=1
    setpartialstrut=0
}

因此面板是还在那儿- 它只是没有分配任何功能,因此大小为 0,并且没有显示任何内容可供右键单击。为了解决这个问题,left可以删除该文件。这应该允许在左侧完全重建一个新文件。

Plugin{}一个稍微简单的解决方案是向文件中添加一个部分left,如下所示:

# lxpanel <profile> config file. Manually editing is not recommended.
# Use preference dialog in lxpanel to adjust config when you can.

Global {
    edge=left
    monitor=0
    height=32
    align=center
    width=50
    transparent=1
    background=0
    tintcolor=#ffffff
    alpha=80
    iconsize=21
    widthtype=request
    autohide=1
    heightwhenhidden=1
    setpartialstrut=0
}
Plugin {
    type=launchbar
    Config {
        Button {
            id=menu://applications/Accessories/pcmanfm.desktop
        }
    }
}

注销并重新登录,面板应该再次可见,尽管上面只有一个图标。但现在可以右键单击它以进入首选项。所有所需的应用程序都需要重新添加。

为了防止将来需要重建,请复制或备份该/home/username/.config/lxpanel/Lubuntu/panels/left文件。

相关内容