This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Cadence
mirror of
https://github.com/falkTX/Cadence
Watch
1
Star
0
Fork
0
Code
Releases
3
Activity
Browse Source
Fix "ps" usage,
closes
#57
tags/v0.9.0
falkTX
10 years ago
parent
d347476b99
commit
23eb1c9c34
6 changed files
with
6 additions
and
6 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
data/cadence
+1
-1
data/cadence-pulse2jack
+1
-1
data/catia
+1
-1
data/claudia
+1
-1
data/claudia-launcher
+1
-1
src/shared_cadence.py
+ 1
- 1
data/cadence
View File
@@ -2,7 +2,7 @@
# Check if already running
PROCS=`ps -
ea -f
| grep /share/cadence/src/cadence.py | grep python`
PROCS=`ps -
f -u $USER
| grep /share/cadence/src/cadence.py | grep python`
if [ x"$PROCS" != x"" ]; then
+ 1
- 1
data/cadence-pulse2jack
View File
@@ -80,7 +80,7 @@ esac
IsPulseAudioRunning()
{
PROCESS=`ps -
e
| grep pulseaudio`
PROCESS=`ps -
u $USER
| grep pulseaudio`
if [ "$PROCESS" == "" ]; then
false
else
+ 1
- 1
data/catia
View File
@@ -2,7 +2,7 @@
# Check if already running
PROCS=`ps -
ea -f
| grep /share/cadence/src/catia.py | grep python`
PROCS=`ps -
f -u $USER
| grep /share/cadence/src/catia.py | grep python`
if [ x"$PROCS" != x"" ]; then
+ 1
- 1
data/claudia
View File
@@ -2,7 +2,7 @@
# Check if already running
PROCS=`ps -
ea -f
| grep /share/cadence/src/claudia.py | grep python`
PROCS=`ps -
f -u $USER
| grep /share/cadence/src/claudia.py | grep python`
if [ x"$PROCS" != x"" ]; then
+ 1
- 1
data/claudia-launcher
View File
@@ -2,7 +2,7 @@
# Check if already running
PROCS=`ps -
ea -f
| grep /share/cadence/src/claudia-launcher.py | grep python`
PROCS=`ps -
f -u $USER
| grep /share/cadence/src/claudia-launcher.py | grep python`
if [ x"$PROCS" != x"" ]; then
+ 1
- 1
src/shared_cadence.py
View File
@@ -76,7 +76,7 @@ def getProcList():
if HAIKU or LINUX or MACOS:
process = QProcess()
process.start("ps", ["-
e"
])
process.start("ps", ["-
u", str(os.getuid())
])
process.waitForFinished()
processDump = process.readAllStandardOutput().split("\n")
Write
Preview
Loading…
Cancel
Save