mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
555abe1948
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4999 a592a061-630c-0410-9148-cb99ea01b6c8
11 lines
290 B
Bash
11 lines
290 B
Bash
#!/bin/sh
|
|
# this is the default converter if no one other was
|
|
# defined by the user in edit->preferences->converter
|
|
#
|
|
# the user can also redefine this default converter
|
|
# with an own shell script in ~/.lyx/scripts
|
|
#
|
|
# converts an image from $1 to $2 format
|
|
convert -depth 8 $1 $2
|
|
exit 0
|