Main theme for SuiteDesk

This commit is contained in:
Manuel Cillero 2017-07-25 13:57:02 +02:00
parent 8cf3c56044
commit 42540d1310
185 changed files with 17597 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#!/bin/sh
jscript="bootstrap.min.js"
original="$jscript.original"
if [ -f "$jscript" ]
then
[ ! -f "$original" ] && cp "$jscript" "$original" && echo "Keeping original file in $original"
sed -i ".bak" 's/\(jQuery\)/\$jq/g' "$jscript"
echo "Replacing $jscript"
else
echo "File $jscript not found"
fi