12 lines
179 B
Markdown
12 lines
179 B
Markdown
# sixel-check
|
|
|
|
Run, returns true(0) if sixel support exists, false (1) otherwise
|
|
|
|
if [ sixel-check ]
|
|
then
|
|
echo "Sixels are supported"
|
|
else
|
|
echo "Sixels are not supported"
|
|
fi
|
|
|