install 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #!/bin/bash
  2. #
  3. # masalla cursor theme
  4. #
  5. # Copyright 2018 hayder majid <hayder@riseup.net>
  6. #
  7. # This program is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program; if not, you can download it from here:
  19. # https://www.gnu.org/licenses/gpl-3.0.html
  20. #
  21. #Check if you run this script with root privileges
  22. if [ "$(whoami)" != "root" ]; then
  23. echo "You need to be in root privileges to run this script. Exiting."
  24. exit 1
  25. fi
  26. INSTADIR=/usr/share/icons
  27. cp -r masalla-cursor* ${INSTADIR}
  28. update-alternatives --install /usr/share/icons/default/index.theme x-cursor-theme /usr/share/icons/masalla-cursor-black/cursor.theme 105