1#!/bin/sh
2
3THEME=Pop
4DIR="../../.."
5
6# $@ is for the caller to be able to supply arguments to anicursorgen (-s, in particular)
7
8GEN=../anicursorgen.py\ "$@"
9
10# enter cursors folder
11cd bitmaps
12
13if [ ! -d "$DIR/$THEME/cursors" ]; then
14	mkdir -p $DIR/$THEME/cursors
15fi
16
17${GEN} --no-shadows tcross$s.in $DIR/$THEME/cursors/tcross.cur
18${GEN} all-scroll$s.in $DIR/$THEME/cursors/all-scroll.cur
19# ${GEN} based_arrow_down$s.in $DIR/$THEME/cursors/based_arrow_down.cur
20# ${GEN} based_arrow_up$s.in $DIR/$THEME/cursors/based_arrow_up.cur
21${GEN} bd_double_arrow$s.in $DIR/$THEME/cursors/bd_double_arrow.cur
22${GEN} bottom_left_corner$s.in $DIR/$THEME/cursors/bottom_left_corner.cur
23${GEN} bottom_right_corner$s.in $DIR/$THEME/cursors/bottom_right_corner.cur
24${GEN} bottom_side$s.in $DIR/$THEME/cursors/bottom_side.cur
25${GEN} bottom_tee$s.in $DIR/$THEME/cursors/bottom_tee.cur
26# ${GEN} center_ptr$s.in $DIR/$THEME/cursors/center_ptr.cur
27${GEN} circle$s.in $DIR/$THEME/cursors/circle.cur
28${GEN} context-menu$s.in $DIR/$THEME/cursors/context-menu.cur
29${GEN} copy$s.in $DIR/$THEME/cursors/copy.cur
30${GEN} cross$s.in $DIR/$THEME/cursors/cross.cur
31${GEN} crossed_circle$s.in $DIR/$THEME/cursors/crossed_circle.cur
32${GEN} crosshair$s.in $DIR/$THEME/cursors/cell.cur
33${GEN} dnd-ask$s.in $DIR/$THEME/cursors/dnd-ask.cur
34${GEN} dnd-copy$s.in $DIR/$THEME/cursors/dnd-copy.cur
35${GEN} dnd-link$s.in $DIR/$THEME/cursors/dnd-link.cur
36${GEN} dnd-move$s.in $DIR/$THEME/cursors/dnd-move.cur
37${GEN} dnd-no-drop$s.in $DIR/$THEME/cursors/dnd-no-drop.cur
38${GEN} dnd-none$s.in $DIR/$THEME/cursors/dnd-none.cur
39${GEN} dotbox$s.in $DIR/$THEME/cursors/dotbox.cur
40${GEN} fd_double_arrow$s.in $DIR/$THEME/cursors/fd_double_arrow.cur
41${GEN} grabbing$s.in $DIR/$THEME/cursors/grabbing.cur
42${GEN} hand1$s.in $DIR/$THEME/cursors/hand1.cur
43${GEN} hand2$s.in $DIR/$THEME/cursors/hand2.cur
44${GEN} left_ptr$s.in $DIR/$THEME/cursors/left_ptr.cur
45${GEN} left_ptr_watch$s.in $DIR/$THEME/cursors/left_ptr_watch.ani
46${GEN} left_side$s.in $DIR/$THEME/cursors/left_side.cur
47${GEN} left_tee$s.in $DIR/$THEME/cursors/left_tee.cur
48${GEN} link$s.in $DIR/$THEME/cursors/link.cur
49${GEN} ll_angle$s.in $DIR/$THEME/cursors/ll_angle.cur
50${GEN} lr_angle$s.in $DIR/$THEME/cursors/lr_angle.cur
51${GEN} move$s.in $DIR/$THEME/cursors/move.cur
52${GEN} pencil$s.in $DIR/$THEME/cursors/pencil.cur
53${GEN} plus$s.in $DIR/$THEME/cursors/plus.cur
54${GEN} pointer-move$s.in $DIR/$THEME/cursors/pointer-move.cur
55${GEN} question_arrow$s.in $DIR/$THEME/cursors/question_arrow.cur
56${GEN} right_ptr$s.in $DIR/$THEME/cursors/right_ptr.cur
57${GEN} right_side$s.in $DIR/$THEME/cursors/right_side.cur
58${GEN} right_tee$s.in $DIR/$THEME/cursors/right_tee.cur
59${GEN} sb_down_arrow$s.in $DIR/$THEME/cursors/sb_down_arrow.cur
60${GEN} sb_h_double_arrow$s.in $DIR/$THEME/cursors/sb_h_double_arrow.cur
61${GEN} sb_left_arrow$s.in $DIR/$THEME/cursors/sb_left_arrow.cur
62${GEN} sb_right_arrow$s.in $DIR/$THEME/cursors/sb_right_arrow.cur
63${GEN} sb_up_arrow$s.in $DIR/$THEME/cursors/sb_up_arrow.cur
64${GEN} sb_v_double_arrow$s.in $DIR/$THEME/cursors/sb_v_double_arrow.cur
65${GEN} top_left_corner$s.in $DIR/$THEME/cursors/top_left_corner.cur
66${GEN} top_right_corner$s.in $DIR/$THEME/cursors/top_right_corner.cur
67${GEN} top_side$s.in $DIR/$THEME/cursors/top_side.cur
68${GEN} top_tee$s.in $DIR/$THEME/cursors/top_tee.cur
69${GEN} ul_angle$s.in $DIR/$THEME/cursors/ul_angle.cur
70${GEN} ur_angle$s.in $DIR/$THEME/cursors/ur_angle.cur
71${GEN} vertical-text$s.in $DIR/$THEME/cursors/vertical-text.cur
72${GEN} watch$s.in $DIR/$THEME/cursors/watch.ani
73${GEN} X_cursor$s.in $DIR/$THEME/cursors/X_cursor.cur
74${GEN} xterm$s.in $DIR/$THEME/cursors/xterm.cur
75${GEN} zoom-in$s.in $DIR/$THEME/cursors/zoom-in.cur
76${GEN} zoom-out$s.in $DIR/$THEME/cursors/zoom-out.cur
77
78# go back up
79cd ..