改变Ubuntu 12.04 Terminal 和 gedit 中tab的颜色

来源:互联网 发布:企业 如何优化 编辑:程序博客网 时间:2024/05/21 16:17

Terminal 和 gedit 中tab的颜色很难看出哪个tab是当前选中的。网上改变颜色的方法基本都是针对Ubuntu13以上的。

终于搜到一个针对12.04的:

http://ubuntuforums.org/showthread.php?t=2038854


after backing up the file, edit /usr/share/themes/Ambiance/gtk-3.0/gtk-widgets.css and in the section titled ".notebook tab", replace

background-image: -gtk-gradient (linear, left top, left bottom,
                                 from (shade (@bg_color, 0.97)),
                                 color-stop (0.80, shade (@bg_color, 0.95)),
                                 to (shade (@bg_color, 0.92)));

with

background-color: #C0C0C0;

0 0