1234567891011121314151617181920212223242526272829303132333435 |
- #!/bin/bash
- if [ "$(whoami)" != "root" ]; then
- echo "You need to be in root privileges to run this script. Exiting."
- exit 1
- fi
- INSTADIR=/usr/share/icons
- cp -r masalla-cursor* ${INSTADIR}
- update-alternatives --install /usr/share/icons/default/index.theme x-cursor-theme /usr/share/icons/masalla-cursor-black/cursor.theme 105
|