blob: 4e2f5c19a4dc3b8d8feefbc4603c5e419a7448ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
tip() {
echo -e "\n"
echo -e "\033[31m === use 'mutter_settings' command to set window rounded radius. === \033[0m"
echo -e "\n"
}
post_install() {
tip
}
post_upgrade() {
tip
}
|