When I log in on my computer (or do I log on in my computer?), four xterms
are automatically started... one of them displays my upcoming events... the
process is simple enough; on.bash_profile:
touch
and on.bashrc:
if [ -f
rm
if [ $? == 0 ]; then
upcoming
fi
fi
(upcoming is the script that does the rest)
The only problem is... how on Earth do I get it to always be the terminal on
the top left corner to do that?
Ideas, anyone?
-geometry (Score:1)
Re:-geometry (Score:1)
them... they are four, and together they fill up the screen (kind of like
dividing it into a grid).
My problem is how to select the one of them that starts the upcoming events
script... sometimes it's the one on the top left corner, others it's the one
in the bottom right corner, etc...
It seems that all the four xterms are started at the same time, so only the
first that succeeds in deleting the file gets to run the script... I would
l
Re:-geometry (Score:1)
life is too short
Re:-geometry (Score:1)
1) The Bash switch -e executes the command
want it to be fully operational afterwards...
2) The xterms aren't opened by me... I simply logged out and saved the
configuration with the xterms opened (although that should
be in some configuration file I'm not aware of...)
Re:-geometry (Score:1)
And another [uminho.pt] to what I sometimes get... :-(
Done :-) (Score:1)
-geometryand such, but that didn't work out the way I intended...Then, I decided to go for a different approach... my
.bash_profilenow reads:# four xterms to start withxterm -bg black -fg white -vb +sk -geometry +0+0 -e " upcoming ; bash "xterm -bg black -fg white -vb +sk -geometry +507+0xterm -bg black -fg white -vb +sk -geometry +0+340xterm -bg black -fg white -vbRe:Done :-) (Score:1)
Re:Done :-) (Score:1)
Re:Done :-) (Score:1)
Re:Done :-) (Score:2)