mozilla geometry in .xinitrc
I use .xinitrc in order to display two small RXVT windows when I start X. Here is what the bottom of my .xinitrc looks like:
#I added this for a second RXVT
rxvt -geometry 70x20-0+0 &
#Start the Window Manager
exec /usr/X11R6/bin/fluxbox &
rxvt -geometry 70X20+0+0
As you can see, I was able to size the RXVT windows using '-geometry.'
To my question.
I want to display a small Mozilla Firebird window, as well, when I start X. I can get the Mozilla Firebird window to display, but at near full screen only, when my .xinitrc looks like:
#I added this for a second RXVT
rxvt -geometry 70x20-0+0 &
exec /home/bdw/MozillaFirebird/MozillaFirebird &
#Start the Window Manager
exec /usr/X11R6/bin/fluxbox &
rxvt -geometry 70X20+0+0
I have been unable to resize the Mozilla Firebird window, a la the RXVT windows and could use some advice. The Mozilla Firebird displays when I start X at near full screen and I would like it to display in a small window in the middle of the screen (about 40X20).
|