Lxpanel 中的任务栏按钮图标未居中

Lxpanel 中的任务栏按钮图标未居中

我在 Ubuntu 21.04 上使用 Lxpanel 0.10.1。任务栏设置为显示仅图标,但如下所示,图标并不位于按钮的中心,而是向左偏移。

Lxpanel 图标

有没有办法让它们居中,比如给每个按钮添加左边距?我尝试了“禁用放大”、“显示较小任务图标”选项的所有排列组合,调整了任务栏首选项的“间距”和“最大宽度”,但无济于事。

在配置文件的全局和任务栏部分下方:~/.config/lxpanel/default/panels/panel

Global {
  edge=bottom
  allign=left
  margin=0
  widthtype=percent
  width=100
  height=24
  transparent=1
  tintcolor=#000080
  alpha=255
  setdocktype=1
  setpartialstrut=1
  usefontcolor=1
  fontcolor=#00fff9
  usefontsize=1
  fontsize=10
  background=0
  backgroundfile=/usr/share/lxpanel/images/background.png
  align=left
  iconsize=24
}
Plugin {
  type=taskbar
  expand=1
  Config {
    tooltips=-1
    IconsOnly=-1
    AcceptSkipPager=1
    ShowIconified=1
    ShowMapped=1
    ShowAllDesks=0
    UseMouseWheel=0
    UseUrgencyHint=-1
    FlatButton=0
    MaxTaskWidth=10
    spacing=1
    GroupedTasks=0
    DisableUpscale=0
    UseSmallerIcons=-1
    SameMonitorOnly=0
  }
}

答案1

我成功了面板. 任务栏配置包含IconsOnly = true

Plugin {
    type = taskbar
    config {
        ShowMapped = true
        IconsOnly = true
    }
}

相关内容