melawy-plymouth-theme/dev/make.sh

20 lines
326 B
Bash
Raw Permalink Normal View History

2023-05-06 21:33:20 +05:00
#!/bin/bash
2023-12-22 00:11:51 +05:00
THEME_NAME="melawy"
2023-05-06 21:33:20 +05:00
if [[ -n "$THEME_NAME" ]]; then
echo "Non empty"
else
echo "Theme name is empty. Exit"
exit
fi
cp -f script.js ../$THEME_NAME/script.script
sed -i 's/function/fun/g' ../$THEME_NAME/script.script
if [[ "$?" == 0 ]]; then
echo "Make successed"
else
echo "Make failed?"
fi