LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 04-18-2002, 09:20 PM   #1
jamaso
Member
 
Registered: Oct 2001
Location: brasil
Distribution: mdrk 8.0,redht7.1,debianpotato
Posts: 615

Rep: Reputation: 30
KDE acqua graphite theme install


I found these themes on cd (acqua-graphite-faux.ktheme and acqua-graphite-.ktheme )and would like to install them , thanks for any help :

- Installation instructions -
Run the script ./theme-install.sh for theme installation.
--------------------------------------------------------------------------
the theme-install.sh has the following lines :

#!/bin/bash
mkdir -p $HOME/.kde/share/apps/kthememgr/Themes
cp -f Acqua-Graphite.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
cp -f Acqua-Graphite-Faux.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
echo Acqua-Graphite Theme for KDE 2.1 installed.
 
Old 04-18-2002, 09:31 PM   #2
jamaso
Member
 
Registered: Oct 2001
Location: brasil
Distribution: mdrk 8.0,redht7.1,debianpotato
Posts: 615

Original Poster
Rep: Reputation: 30
it's in the tar.gz format (Acqua-Graphite-2.1-Theme.tar.gz)
 
Old 04-19-2002, 05:20 AM   #3
Aussie
Senior Member
 
Registered: Sep 2001
Location: Brisvegas, Antipodes
Distribution: Slackware
Posts: 4,590

Rep: Reputation: 58
I don't quite see what your problem is. Did the install script not work?
 
Old 04-19-2002, 07:36 AM   #4
CARTMAN
Member
 
Registered: Feb 2002
Location: Turkiye
Distribution: Pardus
Posts: 147

Rep: Reputation: 16
do a ./theme-install.sh
 
Old 04-19-2002, 10:04 AM   #5
jamaso
Member
 
Registered: Oct 2001
Location: brasil
Distribution: mdrk 8.0,redht7.1,debianpotato
Posts: 615

Original Poster
Rep: Reputation: 30
sorry for the delay and the crazypost

what i don't know is how to run the script ./theme-install.sh or any anyone at all . how do i do that

i did :
bash-2.05$ ./theme-install.sh
bash: ./theme-install.sh: No such file or directory
 
Old 04-19-2002, 02:54 PM   #6
webtoe
Member
 
Registered: Apr 2001
Location: Cambridge, England
Distribution: Slackware 10, Fedora Core 3, Mac OS X
Posts: 617

Rep: Reputation: 30
have you un tarred it?

if so then is it possible that the script's execute flag isn;t set?

do a
Code:
ls -l theme-install.sh
if the result is missing the x in the third coloum then it isn't set and you need to set it using the chmod command.

if it still don't work then stuff the script and do it the manual way. copy the two files into your /home/usernamerhere/.kde/share/apps/kthememgr/Themes/ and you should be fine.

HTH

Alex

P.S. you may of thought of this already. I hope im not insulting your intelligence, you didn;t say what you have tried

Last edited by webtoe; 04-19-2002 at 02:55 PM.
 
Old 04-19-2002, 06:00 PM   #7
taz.devil
Senior Member
 
Registered: Nov 2001
Location: Wa. State
Distribution: Slackware
Posts: 1,261

Rep: Reputation: 45
If all else fails, you can do it the manual way, only putting them in the global directories, since most themes seem to look in them anyhow.

.themerc files go in: /opt/kde/share/apps/kstyle/themes
.ktheme files go in: /opt/kde/share/apps/kthememgr/Themes
wallpaper goes in: /opt/kde/share/wallpapers
.png and image files go in: /opt/kde/share/apps/kstyle/pixmaps

The last one is usually only used by the window themes and not necessarily the fullon KDE themes but pixmaps can still go there usually.
 
Old 04-20-2002, 12:33 AM   #8
jamaso
Member
 
Registered: Oct 2001
Location: brasil
Distribution: mdrk 8.0,redht7.1,debianpotato
Posts: 615

Original Poster
Rep: Reputation: 30
sorry for taking so long to post

this is the theme-install.sh contents :
----------------------------------------------------------
#!/bin/bash
mkdir -p $HOME/.kde/share/apps/kthememgr/Themes
cp -f Acqua-Graphite.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
cp -f Acqua-Graphite-Faux.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
echo Acqua-Graphite Theme for KDE 2.1 installed.
-----------------------------------------------------------
i did already this after copied files to /usr/src :

jamaso@darkstar:~$ cd /usr/src
jamaso@darkstar:/usr/src$ tar -zxvf Acqua-Graphite-2.1-Theme.tar.gz
Acqua-Graphite-2.1-Theme/
Acqua-Graphite-2.1-Theme/ReadMe
Acqua-Graphite-2.1-Theme/Acqua-Graphite-Faux.ktheme
Acqua-Graphite-2.1-Theme/Acqua-Graphite.ktheme
Acqua-Graphite-2.1-Theme/ChangeLog
Acqua-Graphite-2.1-Theme/theme-install.sh

then i just tried each line of the script :

jamaso@darkstar:/usr/src$ mkdir -p $HOME/.kde/share/apps/kthememgr/Themes

jamaso@darkstar:/usr/src$ cp -f Acqua-Graphite.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
cp: cannot stat `Acqua-Graphite.ktheme': No such file or directory

jamaso@darkstar:/usr/src$ cp -f Acqua-Graphite-Faux.ktheme $HOME/.kde/share/apps/kthememgr/Themes/
cp: cannot stat `Acqua-Graphite-Faux.ktheme': No such file or directory

jamaso@darkstar:/usr/src$ echo Acqua-Graphite Theme for KDE 2.1 installed.
Acqua-Graphite Theme for KDE 2.1 installed
-----------------------------------------------------------
i'm trying to understand but is getting confusing .
webtoe i tried what you said :

jamaso@darkstar:/usr/src$ ls -l theme-install.sh
/bin/ls: theme-install.sh: No such file or directory

i didn't even get to see these files you were talking about taz.devil but thanks anyway
 
Old 04-20-2002, 05:57 AM   #9
webtoe
Member
 
Registered: Apr 2001
Location: Cambridge, England
Distribution: Slackware 10, Fedora Core 3, Mac OS X
Posts: 617

Rep: Reputation: 30
you need to descend into the Acqua-Graphite-2.1-Theme directory first. at the moment you are in /usr/src where there is the Acqua-Graphite-2.1-Theme directory and in that are the files that you want. do the following:

Code:
cd /usr/src/Acqua-Graphite-2.1-Theme
./theme-install.sh
that should work

Alex
 
Old 04-20-2002, 12:09 PM   #10
jamaso
Member
 
Registered: Oct 2001
Location: brasil
Distribution: mdrk 8.0,redht7.1,debianpotato
Posts: 615

Original Poster
Rep: Reputation: 30
thaks a lot

now i got it
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
install kde theme in slackware spowel4 Slackware 1 09-07-2005 04:17 PM
how do I install a KDE Theme from kde-look.org? sunowww Linux - Newbie 3 01-03-2005 01:05 PM
kde-xp theme install problem iZvi Slackware 7 10-05-2004 02:51 PM
Need QT 3.0, can't install KDE Theme Manager without it:( silentwhispers Mandriva 1 08-31-2004 02:35 AM
how do i install a theme in kde nikhil778 Mandriva 2 09-09-2003 01:02 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 12:11 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration