Page 3 of 5

white neon pet icon

Posted: Fri 11 Apr 2014, 10:20
by Pelo
white neon pet icon
Nilson, the link is dead ?

New with Pupjibaro : shutdown gui !

Posted: Mon 21 Apr 2014, 05:22
by Pelo
New with Pupjibaro : shutdown gui !
nice Idea, this way of leaving our Puppy Jibaro click here !

Posted: Sat 26 Apr 2014, 17:52
by nilsonmorales
Pelo wrote
white neon pet icon
Nilson, the link is dead ?
ImageImageImageImage

Posted: Wed 03 Sep 2014, 02:21
by battleshooter
Numix

Image

Download Numix Puppy icon theme set here

Image

Image

Icons for wizardwizard interface

Posted: Wed 17 Sep 2014, 04:27
by Cirrael
Well, I've made some icons for the wizardwizard program. Just tried to enhance the look and feel. If you like it, you can download the install script. Cheers!

Posted: Wed 17 Sep 2014, 08:06
by zigbert
Cirrael
Great to see you are using svg in your coding !

Just for spreading some thoughts...
The more recent Puppies use the wizard-wizard from the Woof-CE source
We are also building a new stack with svg icons found in /usr/share/pixmaps/puppy/. At this moment is contains 264 icons.
To minimize the icon-size, the svg-code is NOT grabbed from inkscape, but built manually. An inkscape file is typically 10 times bigger than a manually built file.

Here is the internet-connect.svg found in Woof-CE.

Code: Select all

<?xml version="1.1" encoding="UTF-8"?>
<svg height="100" width="100">

  <defs>
    <radialGradient
      id="RG1" cx="35" cy="34" fx="50" fy="32" r="28"
      gradientUnits="userSpaceOnUse">
      <stop style="stop-color:#123141;stop-opacity:1;" offset="1"/>
      <stop style="stop-color:#679BCB;stop-opacity:1;" offset="0"/>
    </radialGradient>
  </defs>
  
  <ellipse cx="35" cy="34" rx="32" ry="30" style="stroke-width:4;stroke:#dddddd;fill:none;"/>
  <ellipse cx="35" cy="34" rx="32" ry="30" style="fill:url(#RG1);fill-opacity:1;fill-rule:nonzero"/>
  <g style="fill:none;stroke:#aaaaaa;stroke-width:1.5px;stroke-linecap:butt;" >
    <path d="M 36,64 C 22,56 19,46 19,34 19,22 26,10 36,4 l 0,60 C 36,64 54,55 54,34 54,13 36,4 36,4" />
    <path d="m 4,34 63,0 0,0"/>
    <path d="m 13,15 c 0,0 12,7 23,7 13,0 23,-7 23,-7"/>
    <path d="m 13,54 c 0,0 9,-7 23,-7 16,0 23,7 23,7"/>
  </g>
  <ellipse cx="35" cy="34" rx="32" ry="30" style="stroke-width:3;stroke:#123141;fill:none;"/>

  <ellipse cx="35" cy="22" rx="5" ry="5" style="fill:#000000;stroke:#cccccc;stroke-width:2"/>
  <path style="fill:none;stroke:#000000;stroke-width:4;" d="M 38,81 C 12,92 3.9,67 10,58 17,46 32,46 39,35 41,32 41,25 36,22"/>

  <path style="fill:#111111;stroke:#666666" d="m 60,87 0,5 c 0,0 -3,0 -4,0 -2,0 -3,3 -3,3 1,0 26,0 27,0 0,0 -1,-3 -3,-3 -1,0 -4,0 -4,0 l 0,-5"/>
  <path style="fill:#ffffff;stroke:#000000;stroke-width:4px;stroke-linecap:butt" d="m 39,83 c 0,-8 0,-25 0,-31 0,-2 0,-5 3,-5 6,0 45,0 48,0 3,0 3,3 3,7 0,6 0,26 0,29 0,1 0,3 -5,3 -3,0 -43,0 -46,0 -3,0 -3,-3 -3,-3 z"/>
  <path style="fill:#444444;stroke:#ffffff" d="m 41,49 50,0 0,35 -50,0 z"/>

</svg>

Icons for Box theme

Posted: Tue 02 Dec 2014, 07:46
by Volhout
I have no idea how to apply the "glossy" shine to them, but these where hand crafted in mtpaint.

Posted: Fri 27 Mar 2015, 04:29
by technosaurus
If anyone is interested in a better way to edit svg paths manually (with instant feedback), I wrote a very basic svg path editor app here:
http://murga-linux.com/puppy/viewtopic. ... 250#836250

Why hand edit svg paths?
* hand editing gives you better control to optimize
* complex shapes can be represented in compact expressions
* Path is universally supported ... even in libsvgtiny
* a single path can can display multiple complex shapes
* the data compresses extremely well
* most paths are < 50 bytes
* it is simple to generate an entire themed icon set
* once you get the hang of it, its easier than inkscape/mtpaint

Example: My hand optimized path for a rain drop is "4 1L3 4A1.2 2 0 1 0 5 4"

For more detailed info on svg paths, see my link above... but here is my summary sheet

Code: Select all

M x y	move to x,y
m dx dy	move dx and dy from current position
L x y	draw line to x,y
l dx dy	draw line to dx and dy from current position
H x		draw horizontal line to x
h dx	draw horizontal line dx from current position
V y		draw vertical line to y
v dy	draw vertical line dy from current position
C x1 y1,x2 y2,x y	(slope,slope,end point)
		x y end of line
		x1 y1 slope at the start of the line
		x2 y2 slope at the end of the line
c dx1 dy1,dx2 dy2,dx dy
		(same as C but relative positions)
S x2 y2, x y
		Same as C, but use previous x2 and y2 as x1 and y1
s dx2 dy2, dx dy
	(same as S but relative)
Q x1 y1, x y
	draw a quadratic bezier ending at x, y where the slopes are determined
	by drawing a line between the start/end points and x1/y1
q dx1 dy1, dx dy
		(same as Q but relative positions)
T x y	Mirrors the previous Q as a "sin" wave ending at x,y
t dx dy	(same as T but relative positions)
A rx ry rotation large-arc-flag sweep-flag x y
		rx x radius
		ry y radius
		rotation degrees elipse is rotated
		large-arc-flag (1 if arc should be >180 degrees)
		sweep-flag (1 to draw arc in clockwise, 0 = counter clockwise)
		x y endpoint
a rx ry x-axis-rotation large-arc-flag sweep-flag dx dy
Z or z	close path

Posted: Mon 06 Apr 2015, 18:44
by Mike Walsh
I think I must have a rather unorthodox approach to icons. I've never used themed sets of icons, like most people seem to. On the other hand, I don't actually make my own, either.....despite being into graphic design (in a big way!)

For years, now, if I've wanted a new icon for anything, I Google for 'png icons & logos for .....xxxxx (whatever)'. I learnt some years ago that if you wanted to change icons'n'stuff in M$, it HAD to be .png files; nothing else would work. Mind you, it was an absolute PITA setting them up in Windows! I find Linux in general to be rather more forgiving... :)

It means I've built up quite a collection of PNG files, and I can usually find something suitable....unless I want something specific, and then it's back to Google... The nice thing about Puppy is that you don't have to manually resize them before they can be used; the system automatically resizes them to 48x48, no matter how big they are. I find that the larger and more detailed they are, the sharper they appear when applied to the desktop.

I've enclosed a screenie of my Slacko 570 desktop to illustrate the point. My icons are perhaps a bit of a mish-mash....but I like them! The two at lower right, below the luvcview icon are home-brewed; made up in an app called PhotoScape, v 3.7, running in Wine (ver 1.7.28, where it runs perfectly...has the Platinum rating, which I personally reviewed & submitted to the WineHQ Database). I've been using the thing ever since ver. 1, back in ,oh....2007, I think. They're just quick-launchers for 'autostart' and 'share search', used with rcrsn51's Samba-TNG .pet.

(And it's me that has to look at them every day..!)

Regards,

Mike.

Posted: Tue 07 Apr 2015, 19:27
by 8Geee
Old fashioned icons for drive indicators (usr/local/lib/x11/pixmaps in slacko-5.7). Very simply done, based on a traffic-light scheme. On the next update of slacko5.7-2015 and slack57-2015fd the file 'traffic txz' will be in root/my_applications.

traffic-light icons available

Posted: Thu 09 Apr 2015, 15:23
by 8Geee
For those curious, the traffic-light icons as drive-indicators are available here.

Scroll down to 'other files'. Small file, only 7.5Kb with a Read1st instructions file.

Posted: Sat 03 Oct 2015, 18:34
by solo
Made an alternative network-tray iconset if someone's interested. Zip file and instructions can be found here:

http://murga-linux.com/puppy/viewtopic. ... 7&start=24

Posted: Fri 09 Oct 2015, 13:44
by solo
Here's two small png images you can use as an alternative to the retrovol sound icons used in the taskbar.

They are simply called working.png and notworking.png, and they are supposed to be copied to this folder:

/usr/share/retrovol/images/

Posted: Wed 21 Oct 2015, 14:13
by solo
Here's an updated version of the tray icons for Retrovol.

Normally, that is, in my distribution anyway, which Precise 5.7.1, you can see a couple of symlinks in the /usr/share/retrovol/images/ folder, which link to either the working.png, or the notworking.png icons in the same folder.

Those can be replaced by actual icons, so that the icon itself can show the approximated volume level. Very rudimentary though, it distinguishes between low, medium, high, or muted.

So I decided to make the icons for those.

Of course, if you want to use them, you'll have to copy them to the /usr/share/retrovol/images/ folder.

Posted: Tue 17 Nov 2015, 15:18
by nilsonmorales
greengeek
Unfortunately when I try....
https://yadi.sk/d/sXqEkpFckXCoU
Image

Posted: Tue 17 Nov 2015, 18:36
by greengeek
Thanks Nilson!

Posted: Tue 17 Nov 2015, 21:21
by Gobbi
Anybody wants to use these icons is welcome :!:
https://drive.google.com/file/d/0Bzs0RC ... sp=sharing
MD5 : b509f97de7a2bee1ebaa74cbb5ff7b4e

For my daughter, i choose Moeppy icons from japan.

Posted: Wed 18 Nov 2015, 08:46
by Pelo
For my daughter, i choose Moeppy icons from japan. and audio files too, for welcome and shutdown.
Only for Puppies rematerised for our tender wives, or daughters.

Posted: Sun 22 Nov 2015, 12:44
by solo
Wasn't sure whether to post these, because they're not entirely up to standard (they miss the subtle gradient backround), but they might be useful to someone, so here it goes.

I use the shiny stickers iconset, but there were a couple of icons I felt needed to be added, so I made some myself.

Here they are.

Re: For my daughter, i choose Moeppy icons from japan.

Posted: Tue 19 Jan 2016, 23:24
by unicorn316386
Pelo wrote:For my daughter, i choose Moeppy icons from japan. and audio files too, for welcome and shutdown.
Only for Puppies rematerised for our tender wives, or daughters.
Nice. After a bit of searching, I found some Moeppy pink icons here: [url=http://moebuntu.wiki.fc2.com/wiki/Puppy ... 8%E5%8C%96]http://moebuntu.wiki.fc2.com/wiki/Puppy Linuxă‚’