3 Questions

Using applications, configuring, problems
Post Reply
Message
Author
BlackWhizz
Posts: 13
Joined: Tue 25 Dec 2007, 07:26

3 Questions

#1 Post by BlackWhizz »

Hi,

Got 3 questions:
- Is there a way to remove ununed programs, like gxine?
- How do u remove or add icons from/to your desktop?
- Can i get themes for Puppy (standard Window Manager)

User avatar
gary101
Posts: 555
Joined: Sun 08 Oct 2006, 09:51
Location: Boston, Lincs. UK

#2 Post by gary101 »

To answer question 3 first: http://www.murga-linux.com/puppy/viewtopic.php?t=2406

To remove icons from the desktop, right click on the icon and choose 'remove item'

To add an shortcut to the desktop find the appliccation in Rox and drag the executable to the desktop.

To change the icon of the icon, right click and find set icon you then just need to drag the graphic of the icon to the dialogue that appears.

As for removing unwanted programs I am looking into that myself, it may depend on which version of puppy you are running.

Merry Christmas

Gary

BlackWhizz
Posts: 13
Joined: Tue 25 Dec 2007, 07:26

#3 Post by BlackWhizz »

Arent there nicer themes? Google Query's?

klu9
Posts: 344
Joined: Wed 27 Jun 2007, 16:02

#4 Post by klu9 »

Remove software: try Pet-be-gone

some more JWM themes: http://members.cox.net/joes_box/themes.html

setecio
Posts: 326
Joined: Wed 01 Nov 2006, 12:09
Location: UK

#5 Post by setecio »

Try the JWM themes exchange topic :D
http://murga-linux.com/puppy/viewtopic.php?t=23260

User avatar
iamclueless
Posts: 49
Joined: Wed 26 Dec 2007, 06:50

adding icons

#6 Post by iamclueless »

im running puppy 2.15 CE

i have applications from the expansion pack... is there anyway i can get desktop icons for these?

User avatar
Pizzasgood
Posts: 6183
Joined: Wed 04 May 2005, 20:28
Location: Knoxville, TN, USA

#7 Post by Pizzasgood »

Find the executables and drag them to the desktop. Right-click and go to "set icon" to change icons, right-click and go to "edit" to change the text.

For some things (like firefox) you can just change the defaults and keep using the same icons. With Firefox, that means editing /usr/local/bin/defaultbrowser and replacing "seamonky" with "firefox" and hitting "save". You can probably right-click the desktop icon for it and hit "open as text" for any applications using the /usr/local/bin/default* system.


Most executables will be in either /usr/bin/ or /usr/local/bin/. If you know the command to start them, you can open a terminal and type this to locate them:
which firefox
(where "firefox" is the command to start the app you're looking for).

There are several search tools in Puppy too. I'm using a newer Puppy right now so I don't know exactly which ones are in 2.15 CE, but I do know it has the commandline find tool, used like this:
find / -mount -name firefox
In that string, the / means search the entire filesystem. You can replace that with /usr/ to only search in /usr/. The -mount means "don't search any outside filesystems". Sometimes you won't want that option, but in this case it will speed things up, especially if you have big full harddrives. The -name tells it we're searching based on the name (as opposed to date last modified or whatever). The firefox is the string we're searching for. It can use wildcards like * too:
find / -mount -name fire*
^-that will find anything named "firefox", along with anything else starting with "fire" (e.g. firestarter, firefox-bin, firelog, etc.) The * can be at the beginning or middle too.
find / -mount -name *ire*
You can use a ? instead of a * to mean just one char (?irefox will match "firefox" but not "uberfirefox". *irefox will match both).
[size=75]Between depriving a man of one hour from his life and depriving him of his life there exists only a difference of degree. --Muad'Dib[/size]
[img]http://www.browserloadofcoolness.com/sig.png[/img]

Post Reply