blob: 21bfc0e116c2813bf42abd1d293d0b3ecac9dcac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
post_install() {
kquitapp6 krunner 2>/dev/null || true
echo "KRunner will restart on next invocation and load the Zed plugin."
}
post_upgrade() {
pkill -x krunner-zed 2>/dev/null || true
kquitapp6 krunner 2>/dev/null || true
echo "KRunner will restart on next invocation and reload the Zed plugin."
}
pre_remove() {
pkill -x krunner-zed 2>/dev/null || true
kquitapp6 krunner 2>/dev/null || true
}
|