update
This commit is contained in:
parent
4600a71382
commit
368d773023
1
Makefile
1
Makefile
@ -5,6 +5,7 @@ install:
|
||||
cp --no-preserve=mode,ownership -r \
|
||||
wallpapers/* \
|
||||
$(DESTDIR)/usr/share/backgrounds/pika/
|
||||
pika-wallpapers.xml usr/share/gnome-background-properties/
|
||||
|
||||
uninstall:
|
||||
-rm -rf $(DESTDIR)/usr/share/backgrounds/pika
|
||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,4 +1,4 @@
|
||||
pika-wallpapers (1.0.0) kinetic; urgency=medium
|
||||
pika-wallpapers (1.2.0) kinetic; urgency=medium
|
||||
|
||||
* First release
|
||||
|
||||
|
7
gen-xml.sh
Executable file
7
gen-xml.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#! /bin/bash
|
||||
echo -e "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE wallpapers SYSTEM \"gnome-wp-list.dtd\">\n<wallpapers>" > pika-wallpapers.xml
|
||||
for i in $(ls wallpapers)
|
||||
do
|
||||
echo -e "\t<wallpaper>\n\t\t<name>$i</name>\n\t\t<filename>/usr/share/backgrounds/pika/$i</filename>\n\t\t<options>zoom</options>\n\t\t<pcolor>#000000</pcolor>\n\t\t<scolor>#000000</scolor>\n\t\t<shade_type>solid</shade_type>\n\t</wallpaper>" >> pika-wallpapers.xml
|
||||
done
|
||||
echo -e "</wallpapers>" >> pika-wallpapers.xml
|
Loading…
Reference in New Issue
Block a user