11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
|
#!/bin/bash
|
||
|
# ycolorizer - launch Colorizer main window and Help
|
||
|
|
||
|
|
||
|
LNG=${LANG:0:2}
|
||
|
if [[ -f "/usr/share/mabox-colorizer/help/$LNG.html" ]];then
|
||
|
yhtml /usr/share/mabox-colorizer/help/$LNG.html 'Mabox Colorizer'
|
||
|
else
|
||
|
yhtml /usr/share/mabox-colorizer/help/en.html 'Mabox Colorizer'
|
||
|
fi
|