Changes between Initial Version and Version 1 of Ticket #2723, comment 4


Ignore:
Timestamp:
09/22/12 08:40:27 (12 years ago)
Author:
asy
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2723, comment 4

    initial v1  
    22Open=(ooffice %f &)  should be replaced to 
    33Open=if [ -f /usr/bin/loffice ]; then (loffice %f &); else (ooffice %f &); fi 
     4or, possible 
     5Open=if which loffice >/dev/null 2>&1 ; then (loffice %f &); else (ooffice %f &); fi