summarylogtreecommitdiffstats
path: root/cursors.patch
blob: 38c84dfa6b785d7888f64dab2575f71c9ef81b8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
diff --git a/kde/cursors/build.sh b/kde/cursors/build.sh
old mode 100644
new mode 100755
index 33062a2..2731876
--- a/kde/cursors/build.sh
+++ b/kde/cursors/build.sh
@@ -61,15 +61,15 @@ for CUR in src/config/*.cursor; do
 	echo -ne "\033[0KGenerating simple cursor pixmaps... $BASENAME\\r"
 
 	if [ "$DIR1X/$BASENAME.png" -ot $RAWSVG ] ; then
-		inkscape -i $BASENAME -d 90   $RAWSVG --export-filename="$DIR1X/$BASENAME.png" > /dev/null
+		inkscape -i $BASENAME -d 90 --export-background-opacity=0 $RAWSVG --export-filename="$DIR1X/$BASENAME.png" > /dev/null
 	fi
 
 	if [ "$DIR1_5X/$BASENAME.png" -ot $RAWSVG ] ; then
-		inkscape -i $BASENAME -d 135  $RAWSVG --export-filename="$DIR1_5X/$BASENAME.png" > /dev/null
+		inkscape -i $BASENAME -d 135 --export-background-opacity=0 $RAWSVG --export-filename="$DIR1_5X/$BASENAME.png" > /dev/null
 	fi
 
 	if [ "$DIR2X/$BASENAME.png" -ot $RAWSVG ] ; then
-		inkscape -i $BASENAME -d 180  $RAWSVG --export-filename="$DIR2X/$BASENAME.png" > /dev/null
+		inkscape -i $BASENAME -d 180 --export-background-opacity=0 $RAWSVG --export-filename="$DIR2X/$BASENAME.png" > /dev/null
 	fi
 done
 echo -e "\033[0KGenerating simple cursor pixmaps... DONE"
@@ -81,27 +81,27 @@ 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   $RAWSVG --export-filename="$DIR1X/progress-$i.png" > /dev/null
+		inkscape -i progress-$i -d 90 --export-background-opacity=0 $RAWSVG --export-filename="$DIR1X/progress-$i.png" > /dev/null
 	fi
 
     if [ "$DIR1_5X/progress-$i.png" -ot $RAWSVG ] ; then
-        inkscape -i progress-$i -d 135 $RAWSVG --export-filename="$DIR1_5X/progress-$i.png" > /dev/null
+        inkscape -i progress-$i -d 135 --export-background-opacity=0 $RAWSVG --export-filename="$DIR1_5X/progress-$i.png" > /dev/null
 	fi
 
 	if [ "$DIR2X/progress-$i.png" -ot $RAWSVG ] ; then
-		inkscape -i progress-$i -d 180 $RAWSVG --export-filename="$DIR2X/progress-$i.png" > /dev/null
+		inkscape -i progress-$i -d 180 --export-background-opacity=0 $RAWSVG --export-filename="$DIR2X/progress-$i.png" > /dev/null
 	fi
 
 	if [ "$DIR1X/wait-$i.png" -ot $RAWSVG ] ; then
-		inkscape -i wait-$i -d 90  $RAWSVG --export-filename="$DIR1X/wait-$i.png" > /dev/null
+		inkscape -i wait-$i -d 90  $RAWSVG --export-background-opacity=0 --export-filename="$DIR1X/wait-$i.png" > /dev/null
 	fi
 
 	if [ "$DIR1_5X/wait-$i.png" -ot $RAWSVG ] ; then
-		inkscape -i wait-$i -d 135  $RAWSVG --export-filename="$DIR1_5X/wait-$i.png" > /dev/null
+		inkscape -i wait-$i -d 135  $RAWSVG --export-background-opacity=0 --export-filename="$DIR1_5X/wait-$i.png" > /dev/null
 	fi
 
 	if [ "$DIR2X/wait-$i.png" -ot $RAWSVG ] ; then
-		inkscape -i wait-$i -d 180 $RAWSVG --export-filename="$DIR2X/wait-$i.png" > /dev/null
+		inkscape -i wait-$i -d 180 $RAWSVG --export-background-opacity=0 --export-filename="$DIR2X/wait-$i.png" > /dev/null
 	fi
 done
 echo -e "\033[0KGenerating animated cursor pixmaps... DONE"