File: README.wrapper

package info (click to toggle)
kdelibs 4%3A3.5.5a.dfsg.1-8
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 86,260 kB
  • ctags: 72,369
  • sloc: cpp: 575,111; xml: 116,385; ansic: 27,951; sh: 10,565; perl: 6,241; java: 4,066; makefile: 3,775; yacc: 2,432; lex: 643; ruby: 329; asm: 166; jsp: 128; haskell: 116; f90: 99; ml: 75; awk: 71; tcl: 29; lisp: 24; php: 9
file content (38 lines) | stat: -rw-r--r-- 1,530 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
README

kdeinit_wrapper, kshell and kwrapper are a programs that
start programs via kdeinit.

E.g. You can make a symbolic link from $KDEDIR/bin/konsole to 
$KDEDIR/bin/kdeinit_wrapper. Typing 'konsole' on the command line 
will then start 'konsole.la' through kdeinit instead.

kdeinit_wrapper is the simplest for, it only passes the program
and arguments to kdeinit, nothing else

kshell is usually the best choice, it passes the program,
arguments, complete environment ( $PATH, etc. ) and current
working directory to kdeinit

kwrapper tries to make the program look like it was actually
really started directly and not via kdeinit. In addition to
what kshell does, it also tries to redirect the program
output to the console from which kwrapper was started, it waits
for the program started via kdeinit to finish and only after then
it exits ( it doesn't return its return value though ), and
it also passes most signals it gets to the process of the started
program ( thus allowing you to break it using Ctrl+C or stopping
it using Ctrl+Z ). The drawbacks of this are that you'll have one
more process running, and also the signal passing and output
redirection may not work 100% reliably


TODO
====

* There is no portable way to read out the complete environment and
  pass it to kdeinit. - kdeinit should probably unset every
  variable that's not set in the environment it gets from kshell or
  kwrapper
* stdout/stderr of the started application goes to the console where
  kdeinit was started. - done, I hope it's ok