ubuntu中如何去除鼠标

当把ubuntu移植到ARM板子上之后,用的是触摸屏,而且当使用Eink屏幕的时候,鼠标的移动会影响显示效果,所以最好将鼠标去除掉。

下面是去除的步骤:


首先拿到xcursor-transparent-theme-0.1.1.gz package这个主题包,去google上可以下载到得,提供一个下载连接:http://aur.archlinux.org/packages.php?ID=53171

然后解压,切到文件目录,

运行下面的命令,

./configure
cd cursors
make install-data-local DESTDIR=/home/user/.icons/default CURSOR_DIR=/cursors
chown -R user:user /home/user/.icons

这样鼠标就不会再看到啦。

当X第一次启动的时候,有可能会出现以下在其他应用被载入之前,

下面这个方面可以解决这个问题,

创建一个空的鼠标文件,emptycursor

内容如下:

#define nn1_width 16
#define nn1_height 16
static unsigned char nn1_bits[] = {
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};

然后呢在xinitrc中加入如下命令,


xsetroot -cursor /home/user/.icons/default/cursors/emptycursor /home/user/.icons/default/cursors/emptycursor

你可能感兴趣的:(Google,ubuntu,user)