blob: 74039aa2e86c2c38d609dbda2d5771b83d1e8d0f (
plain)
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
29
30
31
32
33
34
35
36
37
38
39
|
logo ()
{
cat<<'EOT'
_______ _ _____ _ _
|__ __| | | __ \| | (_)
| | | |__ _ _ _ __ __ _ _ __ | |__) | |_ _ __ _ _ _ __ ___
| | | '_ \| | | | '_ \ / _` | '__| | ___/| | | | |/ _` | | '_ \/ __|
| | | | | | |_| | | | | (_| | | | | | | |_| | (_| | | | | \__ \
|_| |_| |_|\__,_|_| |_|\__,_|_| |_| |_|\__,_|\__, |_|_| |_|___/
__/ |
|___/
EOT
}
post_install () {
logo
cat<<'EOT'
IMPORTANT: Restart Thunar (or log out) for the new plugins to be loaded:
> thunar -q
EOT
}
post_upgrade () {
post_install
}
post_remove () {
logo
cat<<'EOT'
IMPORTANT: Restart Thunar (or log out) for the plugins to be removed from the UI:
> thunar -q
EOT
}
|