-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapricity-wallpapers.install
28 lines (25 loc) · 1.14 KB
/
apricity-wallpapers.install
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
post_install(){
rm -f /usr/share/gnome-background-properties/adwaita.xml
rm -f /usr/share/gnome-background-properties/gnome-default.xml
rm -rf /usr/share/backgrounds/gnome
mv /usr/share/backgrounds/apricity/ /usr/share/backgrounds/gnome
rm -f /usr/share/gnome-background-properties/gnome-backgrounds.xml
cp /usr/share/gnome-background-properties/apricity-backgrounds.xml /usr/share/gnome-background-properties/gnome-backgrounds.xml
chmod -R 755 /usr/share/backgrounds/gnome
}
post_remove(){
rm -rf /usr/share/backgrounds/apricity
rm -f /usr/share/gnome-background-properties/apricity-backgrounds.xml
}
pre_upgrade(){
rm -rf /usr/share/backgrounds/apricity
rm -f /usr/share/gnome-background-properties/apricity-backgrounds.xml
}
post_upgrade(){
rm -f /usr/share/gnome-background-properties/adwaita.xml
rm -f /usr/share/gnome-background-properties/gnome-default.xml
rm -rf /usr/share/backgrounds/gnome
mv /usr/share/backgrounds/apricity/ /usr/share/backgrounds/gnome
rm -f /usr/share/gnome-background-properties/gnome-backgrounds.xml
cp /usr/share/gnome-background-properties/apricity-backgrounds.xml /usr/share/gnome-background-properties/gnome-backgrounds.xml
}