Comment 18 for bug 141500

Revision history for this message
dRewsus (drewsus) wrote :

even better!

a script can easily be made to do this (but as mentioned would have to be run every time you change your cursor theme):
------------------------------
#!/bin/bash

mkdir -p $HOME/.icons/default
CURSOR_THEME=$(gconftool -g /desktop/gnome/peripherals/mouse/cursor_theme)
echo "[Icon Theme]
Inherits = $CURSOR_THEME" > $HOME/.icons/default/index.theme
echo "Compiz will be restarted to enable this. Please stand by."
compiz --replace &
------------------------------