OS2 World Community Forum

OS/2, eCS & ArcaOS - Technical => Applications => Topic started by: David Graser on January 08, 2018, 08:09:28 am

Title: New Styler titlebar bitmaps
Post by: David Graser on January 08, 2018, 08:09:28 am
I created these a few years ago for eStyler.  However, I don't recall ever putting all them together.  So I packaged them and uploaded.  Just copy to you sys\apps\styler\bitmaps\tnkgronds directory.  Discard the ones you don't like or think you will never use.

David
Title: Re: New Styler titlebar bitmaps
Post by: Martin Iturbide on January 08, 2018, 06:28:37 pm
Hi David.

Thanks for sharing. I have my little experiment where I collected some of the OS/2 artwork here:
https://github.com/OS2World/EXP-Artwork

I know it is not a way to use a git. I just collected things that shows up on old OS/2 shareware CDs and also your artwork and put it there. Too bad I can not share the "Extended Attributes" on git, I like seeing the icons on my desktop. If anybody has an idea, please let me know.

Regards
Title: Re: New Styler titlebar bitmaps
Post by: Dave Yeo on January 08, 2018, 06:51:51 pm
You could use eautil to split of the extended attributes into a separate file and rejoin them later.
Title: Re: New Styler titlebar bitmaps
Post by: Martin Iturbide on January 08, 2018, 09:32:32 pm
Thanks Dave. I'm trying EAUTIL.exe for the first time. I checked the help inf (HELP EAUTIL)  but the samples only show how to use it with one files. The wildcard *.* is not working there, any tips ?

Regards
Title: Re: New Styler titlebar bitmaps
Post by: Andreas Schnellbacher on January 08, 2018, 09:53:08 pm
Split EAs: eautil filename filename.EA /s /p /r
Join EAs:  eautil filename filename.EA /j /o /p
   s  split
   j  join
   r  replace existing EA file (split mode only)
   p  preserve EAs in source file (split and join mode)
   o  overwrite existing EAs (join mode only)
   m  merge existing EAs (join mode only)
Title: Re: New Styler titlebar bitmaps
Post by: Dave Yeo on January 08, 2018, 10:28:09 pm
You could test under sh.exe and see if the shells wildcard support works. Otherwise write a script, perhaps to do all files in a directory.
Title: Re: New Styler titlebar bitmaps
Post by: Ian Manners on January 09, 2018, 05:00:35 am
Create a little commandline cmd file with:-

Quote
for %%f in (*) do eautil "%%f" NUL /S

in it.

Sorry, just realised I forgot to say put the switch you want to use where the /S is, /S will clear the EA's.

Gee's my english is atrocious at present.. to early in the morning.. Fixed my grammar, and spelling!
Title: Re: New Styler titlebar bitmaps
Post by: Martin Iturbide on January 09, 2018, 01:09:19 pm
Thanks. I will try that out.

Regards