将日期从 GNOME 顶栏的中心移到右侧

将日期从 GNOME 顶栏的中心移到右侧

我正在使用 Ubuntu 18.04.5 LTS。

我需要将“通知日期和时间”移至右角。目前它位于屏幕中间。

我无法安装 Gnome tweak tool。除了安装 gnome tweak tool idea 之外,还有谁能帮忙移动通知吗?

在此处输入图片描述

答案1

要移动到右侧,请运行以下命令。

gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval string:'Main.panel._centerBox.remove_child(Main.panel.statusArea.dateMenu.container); Main.panel._rightBox.insert_child_at_index(Main.panel.statusArea.dateMenu.container, 0);'

为了使其正常,请运行以下命令。

gdbus call --session --dest org.gnome.Shell --object-path /org/gnome/Shell --method org.gnome.Shell.Eval string:'Main.panel._rightBox.remove_child(Main.panel.statusArea.dateMenu.container); Main.panel._centerBox.add_child(Main.panel.statusArea.dateMenu.container);'

您需要将第一个命令添加到启动应用程序列表中以保持持久性。否则每次注销和登录后,您都需要运行第一个命令。

在此处输入图片描述

相关内容