当 lxpanel 位于左边缘时,它不会保存宽度设置

当 lxpanel 位于左边缘时,它不会保存宽度设置

我正在使用lxpanel我的面板。这个错误可能是新的,因为我从 15.10 开始就遇到这个问题。以下是重现错误的方法:

  1. 跑步lxpanel
  2. 转到终端并输入lxpanelctl config或转到Panel Settings
  3. Edge部分中单击Left。您将注意到 自动Width变为 120 像素。

每次电脑启动时我都可以将其改回 30 像素,但这真的很烦人。有人能解决这个问题吗?

PS:面板配置如下:

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

Global {
  edge=left
  allign=left
  margin=0
  widthtype=percent
  width=30
  height=100
  transparent=0
  tintcolor=#aeaeae
  alpha=255
  setdocktype=1
  setpartialstrut=1
  usefontcolor=1
  fontcolor=#ffffff
  background=0
  backgroundfile=/usr/share/lxpanel/images/lubuntu-background.png
  iconsize=30
  usefontsize=1
  fontsize=15
  align=left
}
Plugin {
  type=space
  Config {
    Size=4
  }
  expand=0
}
Plugin {
  type=menu
  Config {
    image=/home/diamond/Downloads/white-circle-md.png
    system {
    }
    separator {
    }
    item {
      command=run
    }
    separator {
    }
    item {
      image=gnome-logout
      command=logout
    }
  }
}
Plugin {
  type=space
  Config {
    Size=4
  }
}
Plugin {
  type=space
  Config {
    Size=4
  }
}
Plugin {
  type=taskbar
  expand=1
  Config {
    tooltips=1
    IconsOnly=0
    AcceptSkipPager=1
    ShowIconified=1
    ShowMapped=1
    ShowAllDesks=0
    UseMouseWheel=1
    UseUrgencyHint=1
    FlatButton=0
    MaxTaskWidth=30
    spacing=1
  }
}
Plugin {
  type=tray
  Config {
  }
}
Plugin {
  type=space
  Config {
    Size=3
  }
}
Plugin {
  type=wincmd
  Config {
    Button1=iconify
    Button2=shade
  }
}
Plugin {
  type=volumealsa
  Config {
  }
}
Plugin {
  type=space
  Config {
    Size=4
  }
  expand=0
}
Plugin {
  type=dclock
  Config {
    ClockFmt=%H %M
    TooltipFmt=%A %x
    BoldFont=0
    IconOnly=0
    CenterText=0
  }
}
Plugin {
  type=launchbar
  Config {
    Button {
      id=/usr/share/applications/lubuntu-logout.desktop
    }
  }
}

答案1

这是一个已知的错误,我希望他们会在下一个版本中对其进行调整。同时,您可以安装没有此错误的 0.7.2-1 版本,它与 0.8.1 完全相同(至少从图形角度来看)

您可以在此处下载 .deb 包进行安装:i386:https://packages.debian.org/jessie/i386/lxpanel/download amd64:https://packages.debian.org/jessie/amd64/lxpanel/download lxpanel 数据:https://packages.debian.org/jessie/all/lxpanel-data/download

在安装软件包之前,您必须删除当前版本:

sudo apt-get remove lxpanel-data lxpanel

然后您可以安装 lxpanel-data,然后安装 lxpanel。

为了避免系统自动更新至 0.8.1,您可以启动

sudo apt-mark hold lxpanel
sudo apt-mark hold lxpanel-data

相关内容