Changes between Initial Version and Version 1 of Ticket #2723, comment 4
- Timestamp:
- 09/22/12 08:40:27 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2723, comment 4
initial v1 2 2 Open=(ooffice %f &) should be replaced to 3 3 Open=if [ -f /usr/bin/loffice ]; then (loffice %f &); else (ooffice %f &); fi 4 or, possible 5 Open=if which loffice >/dev/null 2>&1 ; then (loffice %f &); else (ooffice %f &); fi