考虑到 CPU 和 RAM 信息会使主默认面板变得混乱,我决定创建一个单独的侧面板来选择性地显示它。然后我将面板设置为隐藏在 0 像素处,并且无法再访问它。
面板是否在某处仍有配置文件,以便我可以更改设置而无法取消隐藏它?
我知道我可以制作一个新面板,而不必担心无用的属性文件在某个目录中收集灰尘。
答案1
lxpanels 的配置文件应该在目录中找到/home/uesr/.config/lxpanel/LXDE/panels/
。
它看起来类似于下面的示例,并且应该非常简单。要在编辑后重新加载配置,您必须首先杀死 lxpanel:
killall lxpanel
您会注意到面板消失了,然后您可以使用新的配置来启动它,如下所示(注意尾随的&号将在后台运行此过程):
lxpanel --profile LXDE &
我说“类似这样”是因为在这种情况下我的个人资料称为 LXDE。但是,如果您查看该目录,/home/user/.config/lxpanel/
您可能会看到一些不同的目录。位于的每个目录/home/user/.config/lxpanel/
都是一个配置文件。
从man lxpanel
:
FILES
~/.config/lxpanel/PROFILE
config file, can be edited by preference dialog.
对我来说,输出ls /home/user/.config/lxpanel/
显示以下配置文件(目录)default Lubuntu LXDE
:。我的是 LXDE,所以我用来lxpanel --profile LXDE &
运行 lxpanel。
下面是我的面板示例,它仅在屏幕右侧显示时钟插件。配置文件本身具有/home/user/.config/lxpanel/LXDE/panels/left
误导性,因为它位于右侧。根据您创建面板的方式,名称可能并不表示面板的实际位置,因此请确保您使用的是正确的配置文件。
# lxpanel <profile> config file. Manually editing is not recommended.
# Use preference dialog in lxpanel to adjust config when you can.
Global {
edge=right
allign=center
margin=31
widthtype=pixel
width=36
height=52
transparent=0
tintcolor=#e6eeed
alpha=185
autohide=1
heightwhenhidden=2
setdocktype=1
setpartialstrut=0
usefontcolor=0
fontsize=10
fontcolor=#000000
usefontsize=0
background=1
backgroundfile=/usr/share/lxpanel/images/background.png
iconsize=24
loglevel=2
}
Plugin {
type = dclock
Config {
ClockFmt=%I:%M
TooltipFmt=%A %x
BoldFont=0
IconOnly=0
CenterText=0
}
}
Plugin {
type = dclock
Config {
ClockFmt=%R
TooltipFmt=%A %x
BoldFont=0
IconOnly=0
CenterText=0
}
}