blob: 73be0cb68b7c8caabcd285f3196f81dc04bb15dd (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
# this is executed by make install, but doesn't work since setcap can only be run as root
setcap CAP_SYS_NICE=+ep /usr/bin/kwin_wayland
}
post_upgrade() {
post_install
}
|