我在 Ubuntu 11.10 中设置了双显示器。我想在两台显示器上放置一张壁纸。我该怎么做呢?
假设我有一个目录,其中包含.rtf我使用 LibreOffice Writer 编辑的大约 100 个文件。
我希望该目录中的所有文件都具有完全相同的基本富文本样式指令,例如:
* font-family: Ubuntu # All text in all files is now Ubuntu;
* font-size: 12px # All text in all files is now 12px big;
h1: 28px # All h1's are now 28px big;
if font-size: 18px {make it 22px} # All text with font-size 18px is now 22px;
Run Code Online (Sandbox Code Playgroud)
等等......所以,基本上我想一次更改所有文件。这种“批量造型”可能吗?
也许以某种方式使用 CLI 是可能的?
我试过“assogiate”,但只包含文件类型,没有可用的文件夹选项。我不想单独安装任何主题或更改文件夹图标。
我的不好,一开始没有包括:我想添加我选择的图标。
任何帮助表示赞赏!
当您运行以下代码时,它将在窗口中显示一个内联工具栏。请注意内嵌工具栏如何具有突出的背景。有没有办法应用 CSS 来摆脱它并与常规窗口颜色混合?

#!/usr/bin/python3
from gi.repository import Gtk
button_names = [Gtk.STOCK_ABOUT, Gtk.STOCK_ADD, Gtk.STOCK_REMOVE, Gtk.STOCK_QUIT]
buttons = [Gtk.ToolButton.new_from_stock(name) for name in button_names]
toolbar = Gtk.Toolbar()
toolbar.set_show_arrow(False)
for button in buttons:
toolbar.insert(button, -1)
style_context = toolbar.get_style_context()
style_context.add_class(Gtk.STYLE_CLASS_INLINE_TOOLBAR)
grid = Gtk.Grid()
grid.add(toolbar)
label = Gtk.Label()
grid.add(label)
window = Gtk.Window()
window.set_size_request(200, 50)
window.add(grid)
window.connect('delete-event', Gtk.main_quit)
window.show_all()
Gtk.main()
Run Code Online (Sandbox Code Playgroud)
使用andrewsomething代码,它开始看起来更好,但“边界”仍然存在并占用空间。请注意,在下面的屏幕截图中,左侧的工具栏比右侧的常规按钮小:

Unity 系统托盘中的 Google 桌面图标看起来很难看:

有什么办法解决这个问题吗?
例如,在 Windows XP(及更高版本)中,您可以Right Click My PC -> Properties -> Advanced System Settings禁用一整套功能,这些功能会关闭令人眼花缭乱的功能并使计算机运行速度极快。

由于我出于开发目的在虚拟机上运行 Ubuntu,因此我真的不在乎我的窗口是否具有透明度或滑入滑出。我只是希望它尽可能快地运行。
这在最新版本的 Ubuntu 中可能吗?
style ×6
13.04 ×1
appearance ×1
background ×1
gtk3 ×1
libreoffice ×1
nvidia ×1
performance ×1
pygi ×1
python ×1
wallpaper ×1