设置特定应用程序(例如游戏)的时间限制


8

我想为Ubuntu上的某些特定应用程序(例如游戏)设置时间限制。有多种Windows应用程序可以做到这一点,包括HomeGuard Program Blocker,它可以将某些应用程序的使用限制在一天的特定时间,或者将应用程序的使用限制在特定的时间段。Ubuntu是否有任何类似的软件?


有一个名为Ubuntu的家长控制程序,但我不知道它是否可以阻止所有应用程序。
安德森·格林

到目前为止,这是我在Ubuntu论坛上找到的唯一相关讨论:ubuntuforums.org/showthread.php?t=977836有人提到了名为“ Cyborg”和“ Cyber​​cafe ”的应用程序,但我仍在尝试查找他们。
安德森·格林

还有一个名为timekpr的程序,但我不知道它是否可以阻止对特定应用程序的访问。
安德森·格林

如果要开发执行此操作的应用程序,则需要找到一种方法来检测正在运行的进程:cyberciti.biz/faq/show-all-running-processes-in-linux
Anderson Green

也可以通过命令行限制对应用程序的访问-此信息对开发人员也可能有用。askubuntu.com/questions/8149/…–
安德森·格林

Answers:


6

为此,我仅编写了以下脚本。我命名为timelimit

#!/bin/bash

#timelimit - Set daily time limits for specific applications

#Licensed under the standard MIT license:
#Copyright 2013 Radu Rădeanu (https://askubuntu.com/users/147044/).
#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

if [ $# -ne 1 ];then
    echo "Usage: `basename $0` APP_NAME"
    exit 1
fi

export DISPLAY=:0

app_name=$@
time_to_play_daily="2:30:00"  # channge as you wish; the format is: H[:M[:S]]
file="$HOME/.count_time_$app_name"

if [ -a $file ]; then
    if [ "$(head -1 $file)" != "$(date +%D)" ]; then
        echo $(date +%D) > $file
        echo $time_to_play_daily >> $file
    fi
else 
    touch $file
    echo $(date +%D) >> $file
    echo $time_to_play_daily >> $file
fi

time_to_play_left=$(sed -n '2p' $file)

sec_left=$(echo $time_to_play_left | awk -F: '{ print ($1 * 3600) + ($2 * 60) + $3 }')

function countdown
{
    sec_left=$(echo $time_to_play_left | awk -F: '{ print ($1 * 3600) + ($2 * 60) + $3 }')
    local start=$(date +%s)
    local end=$((start + sec_left))
    local cur=$start

    while [[ $cur -lt $end ]]; do
        pid=$(pgrep -x $app_name)
        if [ "$pid" != "" ]; then
            cur=$(date +%s)
            sec_left=$((end-cur))
            time_to_play_left="$((sec_left/3600)):$(((sec_left/60)%60)):$((sec_left%60))"
            sed -i "2s/.*/$time_to_play_left/" $file
            # next line is useful only when you test from terminal
            printf "\rTime left to play with %s: %02d:%02d:%02d" $app_name $((sec_left/3600)) $(((sec_left/60)%60)) $((sec_left%60))
            sleep 1
        else
            break
        fi
    done
}

while : ; do
    pid=$(pgrep -x $app_name)
    sleep 1
    if [ "$pid" != "" ]; then
        if [ $sec_left -gt 0 ]; then
            notify-send -i $app_name "Time left to play with $app_name for today: $time_to_play_left"
        else
            notify-send -i "error" "Your time to play with $app_name has finished for today!"
        fi
        countdown $time_to_play_left
        pid=$(pgrep -x $app_name)
        if [ "$pid" != "" ]; then kill $pid; fi
    fi
done

不要忘记使其可执行:

chmod +x timelimit

句法:

时限APP_NAME

重要:

  • 您可以在终端中测试此脚本,但应在系统启动时运行。要使其在启动时运行,请参阅如何在启动时运行脚本?
  • 如果您晚上不关闭计算机,则该脚本应在午夜重新启动。为此,您可以添加cron作业,例如:

    00 00 * * *杀死`pgrep -x timelimit` && timelimit APP_NAME
    

    有关更多信息:https : //help.ubuntu.com/community/CronHowto


哇!真好!重新启动计算机会绕过时间限制吗?如果是这样,是否有可能使时限保持不变(例如在只读文件中)?
don.joey 2013年

@Private您可以对其进行测试。时间限制存储在文件中,因此,是的,计算机在重新引导时会绕过时间限制。
RaduRădeanu13年

我认为可以将其打包并成为存储库的一部分。美丽的打击技巧!谢谢,我很高兴为您提供这个赏金。
don.joey

很好,它会显示一个小的ubuntu消息框,告诉您玩游戏的时间已经结束了一天,但是该消息一直持续显示……数小时:)
don.joey

@Private您使用哪个应用测试了它?该应用可能会想一次又一次打开。
RaduRădeanu13年

0

限制每次启动
简单易行。但是使用它控制自己
timeout 15 totem 会在15秒后退出程序。但是可以再次启动。编辑并添加timeout <sec>到应用程序“ .desktop”文件的exec 字段

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.