Can't find this anywhere Thread last updated on 2004-01-23 23:17:55

Posted by member 105261 on 2004-01-23 19:27:56

I've searched the forums and probably missed some so i'm sorry if its been posted already. I installed Litestep on a Win98 OS and have the austerity theme running (was defualt). Only 9 Icons appear on the desktop, there are others there and when I delete one of those 9 a new one that was hidden before comes up. How do I enable all of them to be shown?

Posted by member 1 on 2004-01-23 19:55:40 link

you need to move the desktop icons around in the config. They are just off the screen.

Posted by member 105261 on 2004-01-23 20:00:53 link

sorry for being such an idiot but could you help me out on how to do this? Right click, litestep, edit config?

Posted by member 36955 on 2004-01-23 20:04:14 link

go to $ConfigDir$desktop_icons_9x.rc

Posted by member 105261 on 2004-01-23 20:12:31 link

What do I need to change in this... sorry again

IF TopBar
*DeskFolder align(left) background(transparent) contents(all) folder($Desktop$) font($IconFont$/8) labels(transparent) text($IconTxtColour$) position(0, 100) size(70, $ResolutionY-100$) view(icon)

ELSE
*DeskFolder align(left) background(transparent) contents(all) folder($Desktop$) font($IconFont$/8) labels(transparent) text($IconTxtColour$) position(0, 10) size(70, $ResolutionY-10-100$) view(icon)
ENDIF

Posted by member 79626 on 2004-01-23 23:13:45 link

removed doubled post, sorry

Posted by member 79626 on 2004-01-23 23:17:55 link

I have not actually played with DeskFolder, but most LS configs follow the same logic. You have 2 different options here.

"IF TopBar" This says "if the bar is at the top of the screen, do the following" The ELSE condition's code is invoked if the bar is not at the top. The important part (in your case) begins; postion(...

The arguments passed to Position and Size are in the format x,y.

position(0,10) size (70, $ResolutionY-100$)
- means -
location-> 0 pixels over, 10 pixels down
size -> 70 pixels wide, by your Y resolution
minus 100

Just adjust the size parameters until all your icons fit.