Part4:光标
光标主题:
放入usr/share/icon或~/.icon下的图标主题文件夹中(相关目录结构详见Part3)
在theme中的主题信息文件中指定
12.04
gconftool-2 --set --type string /desktop/gnome/peripherals/mouse/cursor_theme kylin-icon-theme设定光标主题
13.04
gsettings set org.gnome.desktop.interface cursor-theme cursorname 设定光标主题
注意光这样设置还不能将光标完全改变,还需修改X的光标设置。其使用的是/etc/alternatives/x-cursor-theme文件,此文件为软链接,使用update-alternatives机制更改。
可用一下命令手动选择光标主题:
update-alternatives --config x-cursor-theme
自动配置光标主题:
使用alternatives机制
/usr/share/icons/xxxx/cursor.theme
安装主题
update-alternatives --install x-cursor-theme x-cursor-theme /usr/share/icons/xxxx/cursor.theme 150
由于x-cursor-theme使用了自动配置方式,而优先级150为最高级别,所以xxx.theme已自动设置为默认配置了,可用以命令查询:update-alternatives --display x-cursor-theme
注:以上图片上传到红联Linux系统教程频道中。
若为手动模式,需将其设为自动模式:update-alternatives --auto x-cursor-theme
这样鼠标主题已生效。
以下是摘自系统默认光标主题包dmz-cursor-theme 中psotinst脚本:
update-alternatives --install /usr/share/icons/default/index.theme \
x-cursor-theme /usr/share/icons/DMZ-White/cursor.theme 90
update-alternatives --install /usr/share/icons/default/index.theme \
x-cursor-theme /usr/share/icons/DMZ-Black/cursor.theme 30