TranslateProject/sources/tech/20151208 How to Customize Time and Date Format in Ubuntu Panel.md
2015-12-08 15:16:50 +08:00

2.5 KiB

How to Customize Time & Date Format in Ubuntu Panel

Time & Date format

This quick tutorial is going to show you how to customize your Time & Date indicator in Ubuntu panel, though there are already a few options available in the settings page.

custom-timedate

To get started, search for and install dconf Editor in Ubuntu Software Center. Then launch the software and follow below steps:

1. When dconf Editor launches, navigate to com -> canonical -> indicator -> datetime. Set the value of time-format to custom.

custom time format

You can also do this via a command in terminal:

gsettings set com.canonical.indicator.datetime time-format 'custom'

2. Now you can customize the Time & Date format by editing the value of custom-time-format.

customize-timeformat

You can also do this via command:

gsettings set com.canonical.indicator.datetime custom-time-format 'FORMAT_VALUE_HERE'

Interpreted sequences are:

  • %a = abbreviated weekday name
  • %A = full weekday name
  • %b = abbreviated month name
  • %B = full month name
  • %d = day of month
  • %l = hour ( 1..12), %I = hour (01..12)
  • %k = hour ( 1..23), %H = hour (01..23)
  • %M = minute (00..59)
  • %p = AM or PM, %P = am or pm.
  • %S = second (00..59)
  • open terminal and run command man date to get more details.

Some examples:

custom time format value: %a %H:%M %m/%d/%Y

exam-1

%a %r %b %d or %a %I:%M:%S %p %b %d

exam-2

%a %-d %b %l:%M %P %z

exam-3


via: http://ubuntuhandbook.org/index.php/2015/12/time-date-format-ubuntu-panel/

作者:Ji m 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出