有没有办法只显示日期(即不是如何在 Ubuntu Unity 中的指示器/托盘区域中显示当前时间?
在设置面板中系统设置 > 时间和日期 > 时钟,有一个选项可以隐藏日期,但反之则不行。
这样做的原因是,我觉得把时钟放在那里,盯着我看,太让人分心了。另一方面,我想把指示器图标放在那里,以便在需要时可以随时查看时钟(点击图标比在date
终端中输入更快)。
如果默认应用程序无法实现这一点,我愿意安装其他(第三方)指示器应用程序。
答案1
使用命令行:
dconf write /com/canonical/indicator/datetime/time-format "'custom'"
dconf write /com/canonical/indicator/datetime/custom-time-format "'%a %d %h'"
有关日期时间格式,请参阅strftime()句法。
要重置设置:
dconf reset /com/canonical/indicator/datetime/time-format
dconf reset /com/canonical/indicator/datetime/custom-time-format
答案2
你可以使用 来做到这一点dconf-tools
。因此,打开终端并输入:
sudo apt-get install dconf-tools
现在,打开 dconf 工具并转到 com -> canonical -> indicator -> datetime
time-format
将的值更改为custom
,并将 的值更改custom-time-format
为%F %A
。这将隐藏时间并将日期显示为YYYY-mm-dd <full weekday name>
。有关man date
可以使用的其他格式,请参阅 。
从man date
:
%F full date; same as %Y-%m-%d
%A locale's full weekday name (e.g., Sunday)