blob: 874052e477e802597dbdce6e1e55b585098007f4 (
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
|
undistract_me_path=/usr/share/undistract-me/undistract-me.sh
post_install() {
printf "\
>
>
> To complete installation, add the following to your bashrc:
>
> [[ -f $undistract_me_path ]] && source $undistract_me_path
>
>
"
# echo \"[[ -f $undistract_me_path ]] && source $undistract_me_path\" >> /etc/bash.bashrc
}
post_remove() {
printf "\
>
>
> To complete removal, remove the 'source' directives from your bashrc.
>
> [[ -f $undistract_me_path ]] && source $undistract_me_path
>
>
"
}
|