blob: 0f541d29dc83a92cf15dd0b6d27c842a90d574fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo "Configuration directory \"\${XDG_CONFIG_HOME:-\$HOME/.config}/setroot\" will be created upon first invocation of \"setroot --store <opts>\"."
}
post_upgrade() {
post_install;
}
post_remove() {
echo "Configuration directory \"\${XDG_CONFIG_HOME:-\$HOME/.config}/setroot\" will need to be manually removed."
}
|