Quote:
Originally posted by jacksmash
#1) How can I make it so my terminals and windows will always open this way?
|
How do you start aterm? Through a "run" like window? From another terminal? From Fluxbox menu? Keyboard shortcut?. Because on either case, you could simply place the hole syntax on it:
aterm -tr -sh 50 -fg green -fn10x20 -geometry 85x40
though, if you want, you could create an executable called "aterm2", which should also work. Here is an example. Do this as root:
touch aterm2
that will create a "program" called aterm2.
echo "aterm aterm -tr -sh 50 -fg green -fn10x20 -geometry 85x40" >> aterm2
that would place the hole syntax inside the "aterm2" program. Now make it executable:
chmod +x aterm2
and move it to /usr/bin:
mv aterm2 /usr/bin
Now, whatever you did to call aterm before, call aterm2 instead. That would work....
Regards!