Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

semaja2

macrumors 6502a
Original poster
Dec 12, 2005
576
18
Adelaide
Hey guys, seeing as i got a positive result here when asking for a icon for MultiAlarm i thought id ask here for a icon for InsomniaX.

InsomniaX is a program that prevents a apple laptop from going into sleep.

What i would like is 3 images:

The icon
A load icon
a Unload icon

Of course i cannot afford to pay anyone to make these icons but im hoping some users here will be kind enough to help support this GPL project, i can however add you to the list of people that helped.
 
What is this program? Is there a website for it? Need more info. Or maybe incentive. ;)
 
No, I didn't say that. Just having the site is useful in brainstorming what the icon should be. I might give it a go if I can find some time.
 
monkeydo_jb said:
You mean going into sleep when the lid is closed?

This app is ment to remove the feature of letting a laptop goto sleep when the lid is closed, its great because when you want to move a room u dont lose your connections
 
There not exactly what im looking for but what can you expect for free really, ill put it into InsomniaX's next release.

Would it be possible to get some load and unload icons to match?
 
semaja2 said:
There not exactly what im looking for but what can you expect for free really, ill put it into InsomniaX's next release.

Would it be possible to get some load and unload icons to match?

Nice.

It might be worth saying thank you for their efforts though if he or she is going to make you some more for free that you'll grudgingly accept...:rolleyes:
 
Lau said:
Nice.

It might be worth saying thank you for their efforts though if he or she is going to make you some more for free that you'll grudgingly accept...:rolleyes:

Woops yeh was playing hl2ep1 while replying so my mind was else where :p

Thanks for your help
 
What you think of this?

insomniax.png
 
When I think of the word "insomniac" it always makes me think of someone who looks fed up / tired / angry - because he/she can't sleep. Add to this the red eyes of someone who's really tired and you have your new icon ;)
I can do touch ups too... I love to do icons!
 
What about a script that makes the dock icon change each 2 days so we are both happy ;)
Seriously, as he said its your call. Yours is very nice too.
 
to be honest i hate having to choosing between things :p

However i think the one sequence gave is more Mac like in the way its 3D and could possible have a nice icon for load and unload by the face expressions.

I would love to hear other peoples oppinons on the icons as well.
 
Sequence said:
What you think of this?

insomniax.png

Heh, I like it! You should make several versions of it at varying levels of tiredness, then as the program is left open, the icon in the dock gets more and more haggard looking! :D
 
whooleytoo said:
Heh, I like it! You should make several versions of it at varying levels of tiredness, then as the program is left open, the icon in the dock gets more and more haggard looking! :D
haha, then i'd totally download/get this program, just to see it progress. :D
 
whooleytoo said:
Heh, I like it! You should make several versions of it at varying levels of tiredness, then as the program is left open, the icon in the dock gets more and more haggard looking! :D
haha, then i'd totally download/get this program, just to see it progress. :D
 
Xander562 said:
haha, then i'd totally download/get this program, just to see it progress. :D

Well if i could actually program that functionality into InsomniaX it would be there :D

And i am very thankful for everyones kind work, although you werent being paid you still did it and im very very thankful for your work.
 
semaja2 said:
And i am very thankful for everyones kind work, although you werent being paid you still did it and im very very thankful for your work.

Actually, it's quite easy. If you've added "sleepy1.tiff" to your project, you just need to:

Code:
myImage = [NSImage imageNamed: @"sleepy1"];
[NSApp setApplicationIconImage: myImage];

Voila. All you need then is a simple timer to call this every half hour or so.
 
whooleytoo said:
Actually, it's quite easy. If you've added "sleepy1.tiff" to your project, you just need to:

Code:
myImage = [NSImage imageNamed: @"sleepy1"];
[NSApp setApplicationIconImage: myImage];

Voila. All you need then is a simple timer to call this every half hour or so.

Well im already working on that so it changes if its loaded or unloaded but what Xander wanted would require multiple images maybe 10 slowly changing and i dont know if its worth the effort on both my side and sequence's
 
semaja2 said:
Well im already working on that so it changes if its loaded or unloaded but what Xander wanted would require multiple images maybe 10 slowly changing and i dont know if its worth the effort on both my side and sequence's

It could be done like this:

Code:
- (void) animateIcon
{
	_iconIndex = 0 ;
	[NSTimer scheduledTimerWithTimeInterval:1800.0 target:self selector:@selector(changeIcon:) userInfo:nil repeats:YES] ;
}

- (void) changeIcon: (NSTimer*) timer
{
	NSString*	iconFrameName = [NSString stringWithFormat: @"sleepy%d", _iconIndex] ;
	NSImage*	iconFrame = [NSImage imageNamed:iconFrameName] ;
	[NSApp setApplicationIconImage: iconFrame] ;

      _iconIndex++ ;
}

But if you already are changing the Dock icon, it mightn't be worth the effort.
 
well the icons are in place and the dock icon changes depending on mood, if sequence wants to i can modify it to have like 6-12 images which slowly over a hour change into a insomniaic crasy face.
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.