cursor theme

Asked by k_chupe

this is the install code or something. how do i use it?

#!/bin/bash
mkdir -p $HOME/.icons/default
tar xzf pantherx.tar.gz
cd pantherx && cp -R cursors $HOME/.icons/default/
echo "[Icon Theme]" > $HOME/.icons/default/index.php
echo "Inherits=cursors" >> $HOME/.icons/default/index.php

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Qwerty Maniac
Solved:
Last query:
Last reply:
Revision history for this message
Goatz (mikej-weaver) said :
#1

That looks like a bash script. Put that in a file (copy and paste it with a program like gedit) save it to a file. They make it executable by using chmod. So if you name it test, you would type "chmod +x test". Then run the program ./test.

#gedit iconscript
(copy paste save)
#chmod +x iconscript
#./iconscript

Revision history for this message
k_chupe (k-chupe) said :
#2

so i would use gedit and copy then paste the script to gedit, then save as what ever i want to name it. after that i use chmod, then run it in a terminal?

Revision history for this message
Goatz (mikej-weaver) said :
#3

yes, copy it into a file, make it executable, and run it in a terminal.

Revision history for this message
k_chupe (k-chupe) said :
#4

do i have to do this every time that log in to my desk top?

Revision history for this message
Best Qwerty Maniac (qwertymaniac) said :
#5

No, just once and it'll be permanent till you make another installation.

Revision history for this message
k_chupe (k-chupe) said :
#6

Thanks Qwerty Maniac, that solved my question.