答案1
1)安装gnome-shell-extensions
并gnome-tweaks
2)打开 Gnome Tweaks 并在扩展选项卡上 - 禁用扩展“Ubuntu dock” - 启用扩展“应用程序菜单”和“位置状态指示器”。
不幸的是,软件存储库中没有提供将面板移至底部的扩展。您需要借助Gnome shell 扩展网站。BottomPanel 由 abstract 提供很好,也许更好,因为维护得更好,Frippery Bottom Panel,由 rmyorston 设计。
为了能够从网站安装 Gnome Shell 扩展,您需要安装chrome-gnome-shell
,并且在浏览器中,您需要安装“Gnome Shell Integration”插件。
答案2
你可以这样做 :
- 在 Dash-to-panel 扩展中:要隐藏应用程序图标,请禁用“显示应用程序图标”行为标签。
- 安装软件包“gnome-shell-extensions”:
sudo apt install gnome-shell-extensions
或者从 gnome shell 扩展站点安装它们(位置状态指示器,应用程序菜单) - 在 gnome-tweaks 中,启用扩展:“应用程序菜单“ 和 ”位置状态指示器“
附加组件,如果您愿意,您可以用应用程序和位置菜单的图标替换文本标签。
如果您已经通过包安装了扩展:请将扩展文件复制到您的主目录中:
cp -R /usr/share/gnome-shell/extensions/[电子邮件保护]/〜/ .local / share / gnome-shell /扩展/
cp -R /usr/share/gnome-shell/extensions/[电子邮件保护]/〜/ .local / share / gnome-shell /扩展/
对于应用程序菜单, 替换此:
gedit ~/.local/share/gnome-shell/extensions/[email protected]/extension.js
this._label = new St.Label({
text: _('Applications'),
y_expand: true,
y_align: Clutter.ActorAlign.CENTER,
});
这样 :
this._label = new St.Icon({ icon_name: 'view-app-grid-symbolic', style_class: 'system-status-icon', icon_size: 32 });
- 对于地点菜单, 替换此内容:
gedit ~/.local/share/gnome-shell/extensions/[email protected]/extension.js
let label = new St.Label({
text: _('Places'),
y_expand: true,
y_align: Clutter.ActorAlign.CENTER,
});
这样 :
let label = new St.Icon({ icon_name: 'folder-symbolic', style_class: 'system-status-icon', icon_size: 24 });