অ্যাকোরিয়াস পাওয়ারের উত্তরটি বেশ ভালভাবে কাজ করছে বলে মনে হচ্ছে। তার সমাধানে আমি এখানে কিছু সংযোজন করতে পারি।
শুধুমাত্র জিজ্ঞাসার লক অবস্থা
লক স্থিতির অনুসন্ধানের জন্য যদি আপনার কেবল ওয়ান-লাইনারের প্রয়োজন হয় তবে এটি তালাবদ্ধ এবং আনলক করা থাকলে মিথ্যা হিসাবে সত্য বলে মূল্যায়ন করা উচিত।
isLocked=$(gdbus call -e -d com.canonical.Unity -o /com/canonical/Unity/Session -m com.canonical.Unity.Session.IsLocked | grep -ioP "(true)|(false)")
সর্বশেষ পরিবর্তনের রাজ্যে লক অবস্থা এবং ট্র্যাকের সময় অনুসন্ধান করা
এখন আপনার যদি স্ক্রিনটি কতক্ষণ লক হয়ে থাকে তা ট্র্যাক করে রাখার প্রয়োজন হয় আপনি অন্যরকম পদ্ধতির গ্রহণ করতে চাইতে পারেন।
#!/bin/bash
# To implement this, you can put this at the top of a bash script or you can run
# it the subshell in a separate process and pull the functions into other scripts.
# We need a file to keep track of variable inside subshell the file will contain
# two elements, the state and timestamp of time changed, separated by a tab.
# A timestamp of 0 indicates that the state has not changed since we started
# polling for changes and therefore, the time lapsed in the current state is
# unknown.
vars="/tmp/lock-state"
# start watching the screen lock state
(
# set the initial value for lock state
[ "$(gdbus call -e -d com.canonical.Unity -o /com/canonical/Unity/Session -m com.canonical.Unity.Session.IsLocked | grep -ioP "(true)|(false)")" == "true" ] && state="locked" || state="unlocked"
printf "%s\t%d" $state 0 > "$vars"
# start watching changes in state
gdbus monitor -e -d com.canonical.Unity -o /com/canonical/Unity/Session | while read line
do
state=$(grep -ioP "((un)?locked)" <<< "$line")
# If the line read denotes a change in state, save it to a file with timestamp for access outside this subshell
[ "$state" != "" ] && printf "%s\t%d" ${state,,} $(date +%s)> "$vars"
done
) & # don't wait for this subshell to finish
# Get the current state from the vars exported in the subshell
function getState {
echo $(cut -f1 "$vars")
}
# Get the time in seconds that has passed since the state last changed
function getSecondsElapsed {
if [ $(cut -f2 "$vars") -ne 0 ]; then
echo $(($(date +%s)-$(cut -f2 "$vars")))
else
echo "unknown"
fi
}
মূলত, এই স্ক্রিপ্টটি স্ক্রিনের লক অবস্থায় পরিবর্তনগুলির জন্য নজর রাখে। যখন পরিবর্তনগুলি হয়, সময় এবং রাজ্য একটি ফাইলে ফেলে দেওয়া হয়। আপনি আমার লেখা ফাংশন পছন্দ করেন বা ব্যবহার করেন তবে আপনি এই ফাইলটি ম্যানুয়ালি পড়তে পারেন।
আপনি যদি সেকেন্ডের সংখ্যার চেয়ে টাইমস্ট্যাম্প চান তবে চেষ্টা করুন:
date -ud @$(getSecondsElapsed) | grep -oP "(\d{2}:){2}\d{2}"
-u
স্যুইচটি ভুলে যাবেন না যা তারিখ প্রোগ্রামটিকে আপনার সময় অঞ্চলটিকে উপেক্ষা করতে বাধ্য করে।