Ubuntu小技巧:个性化面版时钟显示
时间:2008-04-23 来源:linux论坛
默认情况下,GNOME桌面的面版的时钟小程序只有少许的可控制选项,我们只能选择12/24制式,或者选择日期/秒针的显示。现在,这则小技巧让你完全自由的控制你的时钟显示。
首先打开终端或按Alt+F2,运行gconf-editor,定位至:/apps/panel/applets
找到你的“时钟”Applet,像我这里是applet_1,再定位到prefs。
现在,你只要以HTML语法和 strftime格式,就能定义你想要的样式和效果,在custom_format处输入定义的样式,并在format处改成custom,就可立即生效。
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://images.lampchina.net/news/10/kY3WbT1R4Jz8GrS7ps0IQveZX6wDExlf.jpg');}" onmousewheel="return imgzoom(this);" alt="" />
比如,我输入:<span color=”#FF0000″>%Y %B %d %A</span><b>%H: %M</b>,并将format设定为:custom。那么效果将会如下图所示:
当然我定义的比较难看,大家可以根据自己的喜好,设定出喜欢的样式。下面是strftime的格式参考:
首先打开终端或按Alt+F2,运行gconf-editor,定位至:/apps/panel/applets
找到你的“时钟”Applet,像我这里是applet_1,再定位到prefs。
现在,你只要以HTML语法和 strftime格式,就能定义你想要的样式和效果,在custom_format处输入定义的样式,并在format处改成custom,就可立即生效。
screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onmouseover="if(this.width>screen.width*0.7) {this.resized=true; this.width=screen.width*0.7; this.style.cursor='hand'; this.alt='Click here to open new window\nCTRL+Mouse wheel to zoom in/out';}" onclick="if(!this.resized) {return true;} else {window.open('http://images.lampchina.net/news/10/kY3WbT1R4Jz8GrS7ps0IQveZX6wDExlf.jpg');}" onmousewheel="return imgzoom(this);" alt="" />
比如,我输入:<span color=”#FF0000″>%Y %B %d %A</span><b>%H: %M</b>,并将format设定为:custom。那么效果将会如下图所示:
当然我定义的比较难看,大家可以根据自己的喜好,设定出喜欢的样式。下面是strftime的格式参考:
- %a 星期几的缩写。
- %A 星期几的全名。
- %b 月份名称的缩写。
- %B 月份名称的全名。
- %c 本地端日期时间较佳表示字符串。
- %d 用数字表示本月的第几天 (范围为 00 至 31)。
- %H 用 24 小时制数字表示小时数 (范围为 00 至 23)。
- %I 用 12 小时制数字表示小时数 (范围为 01 至 12)。
- %j 以数字表示当年度的第几天 (范围为 001 至 366)。
- %m 月份的数字 (范围由 1 至 12)。
- %M 分钟。
- %p 以 ‘AM’ 或 ‘PM’ 表示本地端时间。
- %S 秒数。
- %U 数字表示为本年度的第几周,第一个星期由第一个周日开始。
- %W 数字表示为本年度的第几周,第一个星期由第一个周一开始。
- %w 用数字表示本周的第几天 ( 0 为周日)。
- %x 不含时间的日期表示法。
- %X 不含日期的时间表示法。
- %y 二位数字表示年份 (范围由 00 至 99)。
- %Y 完整的年份数字表示,即四位数。
- %Z 时区或名称缩写。
相关阅读 更多 +