blob: 3a563c59236c5d28014257da67579d3561992a9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "Remember to copy the scripts from /usr/share/dwin/scripts to ~/.config/dwin/scripts"
}
pre_upgrade() {
post_install "$@"
}
post_upgrade() {
post_install "$@"
}
post_remove() {
}
|