diff options
author | Jonas Smedegaard <dr@jones.dk> | 2002-03-10 01:04:21 +0000 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2002-03-10 01:04:21 +0000 |
commit | dd3f46b0432179b53d8e091c06765f657f3055bf (patch) | |
tree | af28f06401cffaa9fb7ded2a79f16111f7f97431 /xsh | |
parent | 1752014912ee29c985e3361f33bf99967fcb521d (diff) |
Avoid exec - rxvt doesn't quit (because of gdkxft and recently enabled?).
Diffstat (limited to 'xsh')
-rwxr-xr-x | xsh | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -18,11 +18,11 @@ function termwrapper () { if [ "x$PRG" != "x" ]; then # if [ -z $PRG ]; then -# rxvt +sb -sl 500 -n "$title" -title "$title" -e $PRG & - exec rxvt +sb -sl 500 -n "$title" -title "$title" -e $PRG + rxvt +sb -sl 500 -n "$title" -title "$title" -e $PRG & +# exec rxvt +sb -sl 500 -n "$title" -title "$title" -e $PRG else -# rxvt +sb -sl 500 -n "$title" -title "$title" & - exec rxvt +sb -sl 500 -n "$title" -title "$title" + rxvt +sb -sl 500 -n "$title" -title "$title" & +# exec rxvt +sb -sl 500 -n "$title" -title "$title" fi } |