blob: 315f2119cec84b8c722b67d4ff0c10c3ed83cfa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
post_install() {
echo
echo "Users wanting to add these thunar custom actions to their personal "
echo "Thunar configuration need to run:"
echo
echo "uca-apply update"
echo
echo "To remove the actions from their personal Thunar configuration, "
echo "users can run:"
echo
echo "uca-apply remove"
echo
echo "It might need to be necessary to restart Thunar for the new custom "
echo "actions to show up:"
echo
echo "thunar -q"
echo
}
post_upgrade() {
post_install
}
|