Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
How to insert recent emerged programs in Enlightenment menu?
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
g i a n n i
n00b
n00b


Joined: 08 Jun 2004
Posts: 44
Location: Lisboa/Portugal

PostPosted: Wed Sep 22, 2004 1:15 am    Post subject: How to insert recent emerged programs in Enlightenment menu? Reply with quote

Hello there :)

I am right now executing
Code:
emerge -Du world
and while at it I remembered a doubt I had... here goes...

I use enlightenment a LOT :D I LOVE IT :D But I installed Firefox and anjuta and aMSN and they don't appear in the menus, when you click whichever mouse button... I mean, I have to open a console and run the program there... if I close the console... KAPUT!!! :?

So, my questions are:

1. How to put them in the menus, or
2. How do I run them from the console, but keep running then if I close the console (if possible at all);

Thanks a lot :D
_________________
Is reading in the bathroom considered multitasking?

g i a n n i
Back to top
View user's profile Send private message
ben
Apprentice
Apprentice


Joined: 10 Jun 2002
Posts: 285
Location: Switzerland

PostPosted: Wed Sep 22, 2004 2:16 pm    Post subject: Reply with quote

Hi there,

First answer:
Middle-click on the background
-Maintenance
--Regenerate menus


First answer bis:
edit ~/.enlightenment/user_apps.menu to add whatever you need

Second answer:
As the program you run is a "child" of the console, terminating the console will terminate it too.
By using "program &" instead of "program" as a command line, you will get the console available for the next task at hand. Though this will not clear the original problem.

HTH

Ben
Back to top
View user's profile Send private message
pjp
Administrator
Administrator


Joined: 16 Apr 2002
Posts: 20388

PostPosted: Wed Sep 22, 2004 2:21 pm    Post subject: Reply with quote

Moved from Installing Gentoo.
_________________
Quis separabit? Quo animo?
Back to top
View user's profile Send private message
rjs
Tux's lil' helper
Tux's lil' helper


Joined: 30 Jul 2004
Posts: 146
Location: Oriel College, Oxford

PostPosted: Wed Sep 29, 2004 3:33 pm    Post subject: Re: How to insert recent emerged programs in Enlightenment m Reply with quote

g i a n n i wrote:

1. How to put them in the menus, or


Try emerging e16menuedit. Then run it from a console:
Code:

emerge e16menuedit
e16menuedit


Then you can add and remove and edit any aspect of the menu. Which is nice.

Quote:

2. How do I run them from the console, but keep running then if I close the console (if possible at all);


Sometimes you don't use a program often enough to warrant adding it to the menu, so you run it from a console. To run the program and get the console back before exiting the program try:

Code:

/path/to/program &


The problem with this, is that the program is still attached to the console, and if you close the console (hang up) then the program is killed. To get around this, try:

Code:

nohup /path/to/program &


nohup tells Linux not to kill the program when the console is closed.

Lastly, nohup leaves a file called nohup.out wherever you ran the program from, that logs errors and things. If you don't need this, then try:

Code:

nohup /path/to/program &>/dev/null &


Which is the command line I use when I want to run a program outside of the console. The >/dev/null makes any output from nohup, in this case nohup.out be sent to /dev/null, which effectively destroys it.

Enjoy.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum