blob: 5ec8107522fcef464935d34c10148244cd3f4847 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
_announce() {
cat <<'EOF'
==> ClipCascade needs a clipboard tool matching your display server:
==> Xorg session: pacman -S xclip
==> Wayland session: pacman -S wl-clipboard xorg-xwayland
==>
==> Recommended for Xorg users (efficient event-based monitor):
==> pacman -S python-gobject gtk3
==>
==> For emoji glyphs in the tray menu:
==> pacman -S noto-fonts-emoji
EOF
}
post_install() {
_announce
}
post_upgrade() {
_announce
}
|