blob: 2b619eec903151cfbd93e94092c78d85906ed20c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/bash
# Copyright Piero Olmeda - AudioLinux <audiolinux AT fastmail DOT fm>
# https://www.audio-linux.com
# License: custom - All rights reserved
source /etc/rtirq.conf
echo "
REALTIME PRIORITY
"
echo "IRQS"
source /etc/rtapp/rtapp.conf
app="jackd jackdbus $APPLICATIONS"
rtirq status | grep "$RTIRQ_NAME_LIST"
echo "
APPLICATIONS"
for WORD in $app
do
if [[ $(pidof $WORD) ]]
then
ps -eLo rtprio,cmd | grep $WORD | grep -v grep
fi
done
|