When I log in at a VT or start a terminal emulator, bash is run. With a graphical terminal emulator, in order to avoid bash and have a program manage the terminal directly, I can run something like:
Code:
$ xfce4-terminal -e screen
How can I run Screen (or another program e.g. mc) at a VT console without bash? If all that instance of bash does is one command, I feel I might as well cut it out for speed and elegance.
Another problem is that just entering the command screen once seems to cause it to be run twice, with one instance nested within the other. Here's some output from top in Forest View Mode:
Code:
11002 root 20 0 0.0 0.3 `- login
11016 user 20 0 0.0 0.6 `- bash
11039 user 20 0 0.0 0.3 `- screen
11040 user 20 0 0.0 0.3 `- screen
11041 user 20 0 0.0 0.6 `- bash
11049 user 20 0 0.0 1.4 `- weechat-curses
How can I make screen be run just once?
Thanks in advance,
Ed