xautolock:ユーザーの活動に応じて自動的にロックを解除する方法は?

xautolock:ユーザーの活動に応じて自動的にロックを解除する方法は?

一定期間ユーザーアクティビティがない場合は、スクリプトを実行する必要があります。私はこれに素晴らしいプログラムを使用していますxautolock

今でも私はまだ必要ですアクティビティが再開したときに別のスクリプトを実行する(マウスを動かしたり、キーを押すなど)

どうすればいいですか?どのようなxautolock防止装置がありますか? xautoUNlock?

またはおそらく他の何かシンプル「怠惰」が止まる瞬間をどのように捉えることができるだろうか?

ベストアンサー1

アイドル状態を確認し、それに応じてsystemd-logindを使用してセッションアイドル状態を更新するために、次のスクリプトを作成しました。 (通常、このタスクはセッションマネージャによって実行されますが、私はセッションマネージャを実行しませんIdleAction)ベース)システムを自動的にスリープモードに切り替えることができます。実行中です。怠惰。部分的に基づくIdleActionSec/etc/systemd/logind.confこれそしてこれ

login1_idleクラスを変更して、必要なスクリプトを実行できます。

#!/usr/bin/python

import ctypes
import os
import dbus
import time

# Timing parameters, in s
idle_threshold = 60 # Amount of idle time required to consider things truly idle
check_interval = 50 # How often to check the X server idle indication

class login1_idle:
  def __init__(self):
    self.flag = 0
    bus = dbus.SystemBus()
    seat = bus.get_object('org.freedesktop.login1',
                          '/org/freedesktop/login1/seat/'
                           + os.environ['XDG_SEAT'])
    active_session = seat.Get('org.freedesktop.login1.Seat',
                              'ActiveSession',
                              dbus_interface='org.freedesktop.DBus.Properties')
    session_obj_path = active_session[1]
    self.session = bus.get_object('org.freedesktop.login1', session_obj_path);

  def on_busy(self):
    self.flag = 0
    self.session.SetIdleHint(False,
                             dbus_interface='org.freedesktop.login1.Session')

  def on_idle(self):
    self.flag = 1
    self.session.SetIdleHint(True,
                             dbus_interface='org.freedesktop.login1.Session')

class XScreenSaverInfo(ctypes.Structure):
  """ typedef struct { ... } XScreenSaverInfo; """
  _fields_ = [('window',      ctypes.c_ulong), # screen saver window
              ('state',       ctypes.c_int),   # off,on,disabled
              ('kind',        ctypes.c_int),   # blanked,internal,external
              ('since',       ctypes.c_ulong), # milliseconds
              ('idle',        ctypes.c_ulong), # milliseconds
              ('event_mask',  ctypes.c_ulong)] # events

xlib = ctypes.cdll.LoadLibrary('libX11.so')
display = xlib.XOpenDisplay(os.environ['DISPLAY'])
xss = ctypes.cdll.LoadLibrary('libXss.so.1')
xss.XScreenSaverAllocInfo.restype = ctypes.POINTER(XScreenSaverInfo)
xssinfo = xss.XScreenSaverAllocInfo()

idle = login1_idle()

while True:
  xss.XScreenSaverQueryInfo(display, xlib.XDefaultRootWindow(display), xssinfo)

  #print "idle: %d ms" % xssinfo.contents.idle

  if xssinfo.contents.idle > idle_threshold * 1000 and not idle.flag:
    print time.strftime('%c') + " doing on_idle"
    idle.on_idle()

  elif xssinfo.contents.idle < idle_threshold * 1000 and idle.flag:
    print time.strftime('%c') + " doing on_busy"
    idle.on_busy()

  #print idle.session.Get('org.freedesktop.login1.Session',
  #                       'IdleHint',
  #                       dbus_interface='org.freedesktop.DBus.Properties')

  time.sleep(check_interval)

C / bashの実装に関連する他の同様の問題は次のとおりです。システムがアイドル状態で再アクティブ化されたときにコマンドを実行します。

おすすめ記事