blob: 7deab7aecca9f4ef46b76cd92235587c3aa9d8a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
post_install() {
cat <<'EOF'
==> kraiser has been installed.
• Requires KDE Plasma (Wayland) and kdotool.
• A config file (~/.config/kraiser/apps.conf) will be created on first run.
• You can generate a sample config with: kraiser --genconf
• To assign shortcuts: System Settings → Shortcuts → "Command or URL"
(example: kraiser dolphin)
EOF
}
post_upgrade() {
post_install
}
post_remove() {
:
}
|