]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
make the glow plugin use its own icons
authorWilliam Jon McCann <jmccann@redhat.com>
Wed, 4 Mar 2009 22:27:04 +0000 (17:27 -0500)
committerWilliam Jon McCann <jmccann@redhat.com>
Wed, 4 Mar 2009 22:27:04 +0000 (17:27 -0500)
Since the plugins may be packaged separately it isn't
kosher to share another plugins icons.

src/plugins/splash/glow/Makefile.am
src/plugins/splash/glow/images/box.png [new file with mode: 0644]
src/plugins/splash/glow/images/bullet.png [new file with mode: 0644]
src/plugins/splash/glow/images/entry.png [new file with mode: 0644]
src/plugins/splash/glow/images/lock.png [new file with mode: 0644]
src/plugins/splash/glow/plugin.c

index 9655af6a6b492e87def6eb15836b69ec8febaca3..705e7afcce7ea2f6ab7af80d8380b206c6015ce7 100644 (file)
@@ -23,6 +23,10 @@ glow_la_SOURCES = $(srcdir)/plugin.c
 
 plymouthdir = $(datadir)/plymouth/glow
 plymouth_DATA = \
+       images/box.png                  \
+       images/bullet.png               \
+       images/entry.png                \
+       images/lock.png                 \
        images/progress-00.png          \
        images/progress-01.png          \
        images/progress-02.png          \
diff --git a/src/plugins/splash/glow/images/box.png b/src/plugins/splash/glow/images/box.png
new file mode 100644 (file)
index 0000000..54876e6
Binary files /dev/null and b/src/plugins/splash/glow/images/box.png differ
diff --git a/src/plugins/splash/glow/images/bullet.png b/src/plugins/splash/glow/images/bullet.png
new file mode 100644 (file)
index 0000000..dd52736
Binary files /dev/null and b/src/plugins/splash/glow/images/bullet.png differ
diff --git a/src/plugins/splash/glow/images/entry.png b/src/plugins/splash/glow/images/entry.png
new file mode 100644 (file)
index 0000000..a9f4157
Binary files /dev/null and b/src/plugins/splash/glow/images/entry.png differ
diff --git a/src/plugins/splash/glow/images/lock.png b/src/plugins/splash/glow/images/lock.png
new file mode 100644 (file)
index 0000000..a0f8c12
Binary files /dev/null and b/src/plugins/splash/glow/images/lock.png differ
index 229b433cc9e61b7e1ca02e7a77849c05e3612ea4..113ec869092d8cfe2aa2f4f4fa638a25106ccb15 100644 (file)
@@ -103,10 +103,10 @@ create_plugin (void)
   srand ((int) ply_get_timestamp ());
   plugin = calloc (1, sizeof (ply_boot_splash_plugin_t));
 
-  plugin->lock_image = ply_image_new (PLYMOUTH_IMAGE_DIR "spinfinity/lock.png");
-  plugin->box_image = ply_image_new (PLYMOUTH_IMAGE_DIR "spinfinity/box.png");
+  plugin->lock_image = ply_image_new (PLYMOUTH_IMAGE_DIR "glow/lock.png");
+  plugin->box_image = ply_image_new (PLYMOUTH_IMAGE_DIR "glow/box.png");
 
-  plugin->entry = ply_entry_new (PLYMOUTH_IMAGE_DIR "spinfinity");
+  plugin->entry = ply_entry_new (PLYMOUTH_IMAGE_DIR "glow");
   plugin->animation = ply_animation_new (PLYMOUTH_IMAGE_DIR "glow",
                                          "throbber-");
   plugin->progress_animation = ply_progress_animation_new (PLYMOUTH_IMAGE_DIR "glow",