आप एक स्टे-ओपन अप्प्लस्क्रिप्ट एप्लिकेशन बनाने पर विचार कर सकते हैं जो स्लीप टाइमर को रनिंग प्रोसेस के अस्तित्व के आधार पर सेट / रीसेट करता है। एक लॉन्च प्लिस्ट बनाना भी एक व्यवहार्य समाधान है, हालांकि मैं अभी भी वाक्य रचना पर अस्थिर हूं। "Pmset बल स्लीप एक्स" कमांड को रूट एक्सेस की आवश्यकता नहीं है, लेकिन सेटिंग्स को रिबूट पर रीसेट किया जाता है।
चूंकि आपकी स्थिति ऐसी लगती है कि मैं आपकी हर ज़रूरत का अनुमान नहीं लगा पाऊँगा, इसलिए मैं आपके लिए कुछ स्केच करूँगा।
property LoopTime: 5 --measured in seconds
property normalSleepTimeout: 30 --measured in minutes
property processName: "rsync" --the name of the process you're trying to find
on run
do shell script "pmset force sleep 0" --disables sleep
idle()
end
on idle
if not appIsRunning() then
do shell script ("pmset force sleep " & normalSleepTimeout as string) -- sets sleep to desired idle timeout
quit
end
return
end
on appIsRunning()
--Here's where you need to do the test that an app is running. True needs to mean "the app is running". Store the value to "result" or change the below return statement.
return result
end
Rsync और पृष्ठभूमि प्रक्रियाओं जैसी चीज़ों के लिए, आपको अधिक चतुर और पोल $ जैसे अन्य कार्यों को करने की आवश्यकता होगी।
set result to False
if 0 < (count of (do shell script ("top -l 1 | grep" & processName as string))) then
set result to True
end
ध्यान दें कि उपरोक्त मामले में, अगर rsyncd चल रहा है तो सिर्फ "rsync" की खोज करने से एक झूठी सकारात्मक वापस आ जाएगी क्योंकि "rsync" और "rsyncd" दोनों मेल खाते हैं। यदि यह आपके लिए काम नहीं करता है, तो आपको अधिक मुश्किल हो सकता है।
यदि एप्लिकेशन एक विंडोड प्रक्रिया थी, तो मैं यह निर्धारित करने के लिए निम्नलिखित का उपयोग करूंगा कि क्या चल रहा है:
tell application "System Events" to set RunningAppNames to name of processes
या बंडल पहचानकर्ताओं के लिए (अधिक सटीक)
tell application "System Events" to set RunningBundles to bundle identifier of processes
मुझे अपने परिदृश्य के बारे में और बताएं और मैं कुछ और सटीक और अधिक लचीले यूजर इंटरफेस के साथ लिखने की कोशिश करूंगा।