mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
6 lines
181 B
Bash
6 lines
181 B
Bash
|
if [ -x /sbin/setcap ]; then
|
||
|
for BIN in jalv jalv.gtk jalv.gtk3 jalv.gtkmm jalv.qt; do
|
||
|
[ -e usr/bin/$BIN ] && /sbin/setcap cap_ipc_lock,cap_sys_nice=ep usr/bin/$BIN
|
||
|
done
|
||
|
fi
|