You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
3.5 KiB
150 lines
3.5 KiB
#!/bin/bash |
|
# Open initial output. |
|
# Prefer konsole if its there, otherwise fall back to xterminal. |
|
#tty -s; if [ $? -ne 0 ]; then |
|
# if command -v konsole &>/dev/null; then |
|
# konsole -e "$0"; exit; |
|
# else |
|
# xterm -e "$0"; exit; |
|
# fi |
|
#fi |
|
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )" |
|
RAWSVG="src/cursors.svg" |
|
INDEX="src/index.theme" |
|
ALIASES="src/cursorList" |
|
|
|
|
|
echo -ne "Checking Requirements...\\r" |
|
if [ ! -f $RAWSVG ] ; then |
|
echo -e "\\nFAIL: '$RAWSVG' missing in /src" |
|
exit 1 |
|
fi |
|
|
|
if [ ! -f $INDEX ] ; then |
|
echo -e "\\nFAIL: '$INDEX' missing in /src" |
|
exit 1 |
|
fi |
|
|
|
if ! type "inkscape" > /dev/null ; then |
|
echo -e "\\nFAIL: inkscape must be installed" |
|
exit 1 |
|
fi |
|
|
|
if ! type "xcursorgen" > /dev/null ; then |
|
echo -e "\\nFAIL: xcursorgen must be installed" |
|
exit 1 |
|
fi |
|
echo -e "Checking Requirements... DONE" |
|
|
|
|
|
|
|
echo -ne "Making Folders... $BASENAME\\r" |
|
DIR2X="build/x2" |
|
DIR1_5X="build/x1_5" |
|
DIR1X="build/x1" |
|
OUTPUT="$(grep --only-matching --perl-regex "(?<=Name\=).*$" $INDEX)" |
|
OUTPUT=${OUTPUT// /_} |
|
mkdir -p "$DIR2X" |
|
mkdir -p "$DIR1_5X" |
|
mkdir -p "$DIR1X" |
|
mkdir -p "$OUTPUT/cursors" |
|
echo 'Making Folders... DONE'; |
|
|
|
|
|
|
|
for CUR in src/config/*.cursor; do |
|
BASENAME=$CUR |
|
BASENAME=${BASENAME##*/} |
|
BASENAME=${BASENAME%.*} |
|
|
|
echo -ne "\033[0KGenerating simple cursor pixmaps... $BASENAME\\r" |
|
|
|
if [ "$DIR1X/$BASENAME.png" -ot $RAWSVG ] ; then |
|
inkscape -i $BASENAME -d 90 -f $RAWSVG -e "$DIR1X/$BASENAME.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR1_5X/$BASENAME.png" -ot $RAWSVG ] ; then |
|
inkscape -i $BASENAME -d 135 -f $RAWSVG -e "$DIR1_5X/$BASENAME.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR2X/$BASENAME.png" -ot $RAWSVG ] ; then |
|
inkscape -i $BASENAME -d 135 -f $RAWSVG -e "$DIR2X/$BASENAME.png" > /dev/null |
|
fi |
|
done |
|
echo -e "\033[0KGenerating simple cursor pixmaps... DONE" |
|
|
|
|
|
|
|
for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
do |
|
echo -ne "\033[0KGenerating animated cursor pixmaps... $i / 23 \\r" |
|
|
|
if [ "$DIR1X/progress-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i progress-$i -d 90 -f $RAWSVG -e "$DIR1X/progress-$i.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR1_5X/progress-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i progress-$i -d 135 -f $RAWSVG -e "$DIR1_5X/progress-$i.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR2X/progress-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i progress-$i -d 135 -f $RAWSVG -e "$DIR2X/progress-$i.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR1X/wait-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i wait-$i -d 90 -f $RAWSVG -e "$DIR1X/wait-$i.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR1_5X/wait-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i wait-$i -d 135 -f $RAWSVG -e "$DIR1_5X/wait-$i.png" > /dev/null |
|
fi |
|
|
|
if [ "$DIR2X/wait-$i.png" -ot $RAWSVG ] ; then |
|
inkscape -i wait-$i -d 135 -f $RAWSVG -e "$DIR2X/wait-$i.png" > /dev/null |
|
fi |
|
done |
|
echo -e "\033[0KGenerating animated cursor pixmaps... DONE" |
|
|
|
|
|
|
|
echo -ne "Generating cursor theme...\\r" |
|
for CUR in src/config/*.cursor; do |
|
BASENAME=$CUR |
|
BASENAME=${BASENAME##*/} |
|
BASENAME=${BASENAME%.*} |
|
|
|
ERR="$( xcursorgen -p build "$CUR" "$OUTPUT/cursors/$BASENAME" 2>&1 )" |
|
|
|
if [[ "$?" -ne "0" ]]; then |
|
echo "FAIL: $CUR $ERR" |
|
fi |
|
done |
|
echo -e "Generating cursor theme... DONE" |
|
|
|
|
|
|
|
echo -ne "Generating shortcuts...\\r" |
|
while read ALIAS ; do |
|
FROM=${ALIAS% *} |
|
TO=${ALIAS#* } |
|
|
|
if [ -e "$OUTPUT/cursors/$FROM" ] ; then |
|
continue |
|
fi |
|
|
|
ln -s "$TO" "$OUTPUT/cursors/$FROM" |
|
done < $ALIASES |
|
echo -e "\033[0KGenerating shortcuts... DONE" |
|
|
|
|
|
|
|
echo -ne "Copying Theme Index...\\r" |
|
if ! [ -e "$OUTPUT/$INDEX" ] ; then |
|
cp $INDEX "$OUTPUT/index.theme" |
|
fi |
|
echo -e "\033[0KCopying Theme Index... DONE" |
|
|
|
|
|
|
|
echo "COMPLETE!"
|
|
|