Ubuntu Tips 小程序在 11.10 中不起作用

Ubuntu Tips 小程序在 11.10 中不起作用

我已经从以下网址下载了 Ubuntu Tips 小程序 .deb这里并安装了它。但我没有得到任何指示。当我尝试从终端运行它时,我收到以下错误

spv@matrix:(~)$ /usr/share/ubuntu-tips-applet/ubuntu-tips-applet.py 

(ubuntu-tips-applet.py:4695): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(ubuntu-tips-applet.py:4695): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(ubuntu-tips-applet.py:4695): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",

(ubuntu-tips-applet.py:4695): Gtk-WARNING **: Unable to locate theme engine in module_path: "pixmap",
Traceback (most recent call last):
  File "/usr/share/ubuntu-tips-applet/ubuntu-tips-applet.py", line 13, in <module>
    import gnome.ui
ImportError: No module named gnome.ui

请告诉我如何让它在 11.10 上运行。

答案1

看完之后文章后,我意识到这些提示只是一个财富数据文件。

因此你可以:

  • 从我的 [PPA]安装indicator-fortune;(https://launchpad.net/~thebernmeister/+archive/ubuntu/ppa
  • 安装fortunes-ubuntu-server;
  • 在首选项中,indicator-fortune添加 fortunes 目录,/usr/share/games/fortunes这将添加全部安装了 fortunes,或者专门添加文件/usr/share/games/fortunes/ubuntu-server-tips.dat

答案2

安装python-gnome2提供的gnome.ui模块。我想这应该可行。

所以

sudo apt-get install python-gnome2

相关内容