web-dev-qa-db-ja.com

ロック解除の30分後に画面をロックする方法

子供に30分間だけコンピューターを使用してもらいたいのですが、そのときは画面をロックしてください。その時点で、画面を再度ロック解除することを選択した場合、さらに30分後に画面を再度ロックしたいと思います。

これを行うスクリプトを作成するにはどうすればよいですか?

8
aam

バックグラウンドで以下のスクリプトを実行すると、任意の数分後に画面がロックされます。

スクリプト

#!/usr/bin/env python3
import subprocess
import time
import sys

t = 0; max_t = int(sys.argv[1])

while True:
    # check runs once per minute
    time.sleep(60)
    # check the lock status, add 1 to current time if not locked, else t = 0
    try:
        subprocess.check_output(["pgrep", "-cf", "lockscreen-mode"]).decode("utf-8").strip()
        t = 0
    except subprocess.CalledProcessError:
        t += 1
    # if unlocked status time exceeds set time (in minutes), lock screen
    if t >= max_t:
        subprocess.Popen(["gnome-screensaver-command",  "-l"])
        t = 0

使い方

  • スクリプトを空のファイルにコピーし、lock_screen.pyとして保存します
  • ロック時間を引数として端末からテスト実行(分)

    python3 /path/to/lock_screen.py 30
    

    (テストのために、私はより短い時間を取るだろう)

  • すべてが正常に機能する場合は、スタートアップアプリケーションダッシュ>スタートアップアプリケーション>追加に追加します。コマンドを追加します。

    python3 /path/to/lock_screen.py 30
    
4
Jacob Vlijm

以下に示すスクリプトは、ユーザーのログイン時に開始され、画面をロックする前に一定時間待機します。 2つの注意事項があります。スクリプトはスタートアップアプリケーションの一部であり、実行可能である必要があります。

各セッションの時間は、/bin/sleepの使用法に従ってTIME変数を変更することにより、スクリプト内で構成できます。 man sleepから:

NUMBER秒間一時停止します。 SUFFIXは、秒を表す「s」(デフォルト)、分を表す「m」、時間を表す「h」、または日を表す「d」です。 NUMBERが整数である必要があるほとんどの実装とは異なり、ここでNUMBERは任意の浮動小数点数です。

このスクリプトは、手動で起動することも、GUIのログインごとに呼び出されるスタートアップアプリケーションの一部として起動することもできます。 ログイン時にアプリケーションを自動的に起動する方法 を参照してください。

シンプルなセットアップ

  1. 個人のHOMEフォルダーにbinという名前のフォルダーを作成します。
  2. binフォルダーにsessionLocker.shという名前のファイルを作成します。ソースコードをそのファイルにコピーします
  3. ファイルを右クリックして実行可能権限を付与し、[プロパティ]-> [権限]タブに移動して、[ファイルをプログラムとして実行できるようにする]オプションをオンにします。または、ターミナルでchmod +x $HOME/bin/sessionLocker.shを使用します
  4. スタートアップアプリケーション を実行します。スタートアップアプリケーションの1つとして、スクリプトへのフルパスを追加します。例:/home/MYUSERNAME/bin/sessionLocker.sh
  5. Unityセッションを再統計してテストします。

このスクリプトは、私の個人的なgithubにも投稿されています。 git clone https://github.com/SergKolo/sergrep.gitを使用して、ソースコードをダウンロードします。

スクリプトソース

#!/bin/bash
##################################################
# AUTHOR: Serg Kolo 
# Date: Jan 2nd 2016
# Description: A script that locks session every x
#       minutes. 
# TESTED ON: 14.04.3 LTS, Trusty Tahr
# WRITTEN FOR: https://askubuntu.com/q/715721/295286
# Depends: qbus, dbus, Unity desktop
###################################################

# Copyright (c) 2016 Serg Kolo
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal in 
# the Software without restriction, including without limitation the rights to use,
# copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 
# the Software, and to permit persons to whom the Software is furnished to do so, 
# subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all 
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A 
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


##############
# INTRODUCTION
##############

# This script locks user session every x minutes, and repeats this task
# upon user re-logging in. Useful for creating session for children, study session
# for college students, pomodoro sessions for self-learners ,etc.
#
# This can be started manually or as part of Startup Applications 

###########
# VARIABLES
###########
TIME="30m"

##########
# MAIN
##########
while [ 1 ]; 
do
  # Wait the time defined in VARIABLES part and lock the session
  /bin/sleep $TIME &&  qdbus  com.canonical.Unity /com/canonical/Unity/Session com.canonical.Unity.Session.Lock

  # Continuously query dbus every 0.25 seconds test whether session is locked
  # Once this sub-loop breaks, the main one can resume the wait and lock cycle.
  while [ $(qdbus  com.canonical.Unity /com/canonical/Unity/Session com.canonical.Unity.Session.IsLocked) == "true" ];
  do
    /bin/sleep 0.25 && continue
  done
done
2