Question for developers

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
5 messages Options
Reply | Threaded
Open this post in threaded view
|

Question for developers

sp1der
Dear developers, would it be possible to have an option to change the colour of the icons etc. in LibreCAD to maybe a different colour or shade of Green?
Reply | Threaded
Open this post in threaded view
|

Re: Question for developers

R. van Twisk
Administrator
This is possible,

but you need to compile your own version of LibreCAD.
Simple take all icon’s and run them through Image Magick/GraphickMagick and change them.
Then do a re-compile.


On Feb 20, 2014, at 6:10 AM, arct [via LibreCAD] <[hidden email]> wrote:

Dear developers, would it be possible to have an option to change the colour of the icons etc. in LibreCAD to maybe a different colour or shade of Green?


If you reply to this email, your message will be added to the discussion below:
http://forum.librecad.org/Question-for-developers-tp5709618.html
To start a new topic under LibreCAD-dev, email [hidden email]
To unsubscribe from LibreCAD, click here.
NAML

Reply | Threaded
Open this post in threaded view
|

Re: Question for developers

sp1der
Thank you Ries..but for me I would not know where to start.

Would someone be able to do this for all of us, to have some different options available?
Reply | Threaded
Open this post in threaded view
|

Re: Question for developers

dxli
By Ries method, you can try bash scripts (in Linux/OSX) in LC source folder:

TEMPFILE=$(mktemp)
for f in $(find . -type f -name "*.png" -print)
do
  convert "$f" -fuzz 25% -fill red -opaque green "$TEMPFILE"
  mv -v "$TEMPFILE" "$f"
done


and rebuild LC after that.
Reply | Threaded
Open this post in threaded view
|

Re: Question for developers

sp1der
Thanks dli but as I said I can't do this - can you do this for us?