i wrote a mini startscript for lyx to delete the
lypipe.in and .out before executing lyx. so i
don't get an error when working with pybliographer.
it works with linux 2.2.14 on intel. 

Herbert


#!/usr/bin/perl
# voss /000915
$User = "\x7e$ENV{'USER'}";   # get USER from env
#print "$User/\n";
if (-e "$User/.lyx/lyxpipe.in" || -e "$User/.lyx/lyxpipe.out") {
  print "delete pipefiles\n";
  system ("rm -f $User/.lyx/lyxpipe*");
}
else { print "no pipefiles\n"; }
exec "/usr/bin/lyx -width 800 -height 950";



-- 
[EMAIL PROTECTED]
http://perce.de/voss/lyx/

Reply via email to