-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Frugalware-Art.org Artwork for Frugalware Linux 
 Arch-Stuff.org Artwork and Stuff for Arch Linux 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
Xfce-Look.org - Eyecandy for your Xfce-Desktop
Xfce-Look.orgXfce-Look.org

 Apr 28 2024  
 Not logged in  
Xfce-Look.org
 Home    Add Artwork   Forum   Groups   Knowledge   Events   Jobs   Users   Register   Login-


Sponsoring


-
- Content .- Fans  . 

SharpDot

   0.3  

X11 Mouse Theme

Score 61%
r-eddy-martinr-eddy-marti n
SharpDot Cursors
SharpDot
zoom


SharpDot
zoom


Homepage:  Link
Downloads:  2176
Submitted:  Mar 31 2012
Updated:  Mar 9 2013

Description:

SharpDot is a flat-look cursor theme for X, inspired by the Yellowdot cursor theme for KDE.



License:
Code licensed under GPL v3
Artwork licensed under Creative Commons BY-SA-3.0-U


Source(SharpDot 0.3.0)
Source(SharpDot 0.2.1)
Source(SharpDot 0.2.0)
Send to a friend
Subscribe
Other  Artwork  from r-eddy-martin
Report inappropriate content



-

 Cool!

 
 by dunemafia on: Apr 4 2012
 
Score 63%

Really like this. Keep up the good work.


Reply to this

-

 Re: Cool!

 
 by r-eddy-martin on: Apr 4 2012
 
Score 50%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

Thanks, I appreciate the feedback.
New version is in the works, with some improved cursors and more robust install script.
Thanks again,
-Eddy


Reply to this

-
.

 How about "rsvg"

 
 by nikolajthygesen on: Apr 8 2012
 
Score 63%

Some platforms don't have the program "convert", but I made build.sh work by using rsvg like:

rsvg --format=png --width=30 --height=30 $i $PNGDIR/$(basename $i .svg).png


Reply to this

-

 Re: How about "rsvg"

 
 by r-eddy-martin on: Apr 15 2012
 
Score 50%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

Great suggestion, I didn't know about rsvg.

I'll add some code to the install script to detect the presence of either convert or rsvg and use the appropriate program.

Thanks!


Reply to this

-
.

 blue version?

 
 by gracca on: May 20 2012
 
Score 50%

I'd like to see a blue version of this theme :)

Voted good!


Copyleft, all rights reversed ;-)
Reply to this

-

 Re: blue version?

 
 by r-eddy-martin on: May 20 2012
 
Score 50%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

Yes, different color versions are very possible, and easy to do with standard string replacement tools, as the svg format is really just a text file.
For example, using sed, we can replace all the colors easily:

sed 's/[old color]/[new color]/g' old_cursor.svg > new_cursor.svg

For example, in the following line, I have sed replace the colors (The '-e' option lets you place multiple text replacements on one line), and put the new svg's in another folder.
CD into the 'svg' folder where you unpacked the archive, and run this:

mkdir ../new_svg
for i in *.svg; do sed -e 's/#e9ddaf/#b8d0e8/g' -e 's/#fc0/#336699/g' -e 's/#c87137/#028482/g' $i > new_$i; done

I just picked a random blue-ish color scheme, replace the new numbers with colors you like.

This is a wonderful idea to have different color schemes available at build-time, and I am currently planning to do just that. If you have suggestions for color schemes (hex color names, please), leave them here and I will work them into the next release.
Thanks!


Reply to this

-

 Re: Re: blue version?

 
 by r-eddy-martin on: May 20 2012
 
Score 63%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

Oops, that line should read:

for i in *.svg; do sed -e 's/#e9ddaf/#b8d0e8/g' -e 's/#fc0/#336699/g' -e 's/#c87137/#028482/g' $i > ../new_svg/$(basename $i); done


Reply to this

-
.

 Re: Re: Re: blue version?

 
 by gracca on: May 21 2012
 
Score 50%

Many thanks for your reply!! I like blue, but I couldn't suggest any color because I'm daltonic :(

The sed replacements worked fine, so you could do something like "make blue" or "build blue".

Your install script has a bug in line 76 :)

Keep up the good work!!


Copyleft, all rights reversed ;-)
Reply to this

-

 Re: Re: Re: Re: blue version?

 
 by r-eddy-martin on: May 21 2012
 
Score 50%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

Yes, exactly; I am planning to make building color themes an option in the build script (as well as using a makefile build system).
For an example, see Comixcursors. They start out greyscale, but the build process changes the gray tones into colors.

Line 76 in the build script is a blank line, can you give me the error you are seeing?


Reply to this

-

 Re: Re: Re: Re: Re: blue version?

 
 by gracca on: May 21 2012
 
Score 50%

It is in the install script, not build :)

$ ./install.sh user
./install.sh: line 76: syntax error near unexpected token `elif'
./install.sh: line 76: ` elif [ $OPT = "user" ]; then user_install'


Copyleft, all rights reversed ;-)
Reply to this

-
.

 Re: Re: Re: Re: Re: Re: blue version?

 
 by r-eddy-martin on: May 22 2012
 
Score 63%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

OK, fixed.
New version install script should run without errors, but let me know if you have trouble.



-

 License change

 
 by r-eddy-martin on: Mar 9 2013
 
Score 50%
r-eddy-martinr-eddy-marti n
SharpDot Cursors

I've changed the license to CC BY-SA 3.0 to be more compatible with item 6 of the Debian Free Software Guidelines:

Quote:
No Discrimination Against Fields of Endeavor

The license must not restrict anyone from making use of the program in a specific field of endeavor. For example, it may not restrict the program from being used in a business, or from being used for genetic research.


Reply to this

-
.

 Multisized?

 
 by janet on: Sep 28 2013
 
Score 50%

SharpDot is the default cursor theme of the siduction razor-qt flavor. Alas the cursors are only available in very tiny size. Might it be possible to get it multisized in e.g. size 32+ too?


Reply to this

Add commentBack




-

Copyright 2004-2016 Xfce-Look.org Team  Legal Notice
All rights reserved. Xfce-Look.org is not liable for any content or goods on this site.
You can find our FAQ here.
All contributors are responsible for the lawfulness of their uploads.
Please send us a notice if you spot an ABUSE of the website.
Information about advertising in Xfce-Look.org.
Developers can use our public webservice interface. More information here: public api
For further information or comments on this site, please send us a message
Xfce is a trademark of the Xfce Project
Content RSS   
Events RSS