暂停10分钟后从暂停唤醒时仅需要密码


11

通常,我希望笔记本电脑在挂起时被锁定,而不是在刚刚挂起时被锁定,因为有一个用例,在笔记本电脑从挂起状态唤醒后输入密码非常麻烦。一个不错的折衷方案是仅在笔记本电脑被挂起超过10分钟之前才需要登录密码。我该怎么做呢?

我在Unity中使用Ubuntu 16.04。


喜欢Android的“ x分钟后锁定”功能吗?
YoureAGitForNotUsingGit

@AndroidDev几乎是。
UTF-8

Answers:


7

在中创建一个文件/lib/systemd/system-sleep/,例如lightdm

sudo touch /lib/systemd/system-sleep/lightdm

使此文件可执行:

sudo chmod +x /lib/systemd/system-sleep/lightdm

每次您“挂起”或“恢复”您的Ubuntu时,都会运行此脚本。

使用所需的文本编辑器(例如:)将其打开sudo nano /lib/systemd/system-sleep/lightdm,然后将以下行粘贴到其中,然后保存:

#!/bin/sh
set -e

case "$1" in
   pre)

    #Store current timestamp (while suspending)
    /bin/echo "$(date +%s)" > /tmp/_suspend 
    ;;

   post)
      #Compute old and current timestamp
      oldts="$(cat /tmp/_suspend)"
      ts="$(date +%s)"

      #Prompt for password if suspended > 10 minutes
      if [ $((ts-oldts)) -ge 600 ];
       then
         export XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
         /usr/bin/dm-tool lock
      fi

      /bin/rm /tmp/_suspend
   ;;
esac

它能做什么?

当您将Ubuntu置于“睡眠”模式时,此脚本将保存当前时间戳,然后在恢复系统时它将检查当前时间戳与旧时间戳的比较,如果差异超过“ 600”秒(10分钟),它将显示您“ lightdm”锁定屏幕,否则不执行任何操作。

最后一步:

打开“系统设置”->“亮度和锁定”。从挂起状态唤醒后,请禁用询问密码,因为我们将处理锁定屏幕留给脚本。

在此处输入图片说明

重新启动或关闭后,您仍然需要输入密码。


1
非常好+1。我应该指出评论#Remove password prompet应读为#Prompt for password if suspended > 10 minutes
WinEunuuchs2Unix

@ WinEunuuchs2Unix感谢您指出,我先写了些其他内容,然后忘了更改评论了:-)
Ravexina

0

/lib/systemd/system-sleep/如果系统短暂暂停,请添加脚本来解锁会话:

cd /lib/systemd/system-sleep/
sudo touch     unlock_early_suspend
sudo chmod 755 unlock_early_suspend
sudo -H gedit     unlock_early_suspend

具有以下内容:

#!/bin/bash
# Don't ask for password on resume if computer has been suspended for a short time

# Max duration of unlocked suspend (seconds)
SUSPEND_GRACE_TIME=600

file_time()      {  stat --format="%Y" "$1";  }

unlock_session()
{
    # Ubuntu 16.04
    sleep 1; loginctl unlock-sessions
}

# Only interested in suspend/resume events here. For hibernate etc tweak this
if [ "$2" != "suspend" ]; then  exit 0;  fi

# Suspend
if [ "$1" = "pre" ]; then  touch /tmp/last_suspend;  fi

# Resume
if [ "$1" = "post" ]; then
    touch /tmp/last_resume
    last_suspend=`file_time /tmp/last_suspend`
    last_resume=`file_time /tmp/last_resume`
    suspend_time=$[$last_resume - $last_suspend]

    if [ "$suspend_time" -le $SUSPEND_GRACE_TIME ]; then
        unlock_session
    fi
fi

1
最初,我认为您的方式(主动解锁)比另一个答案(主动锁定)更优雅。但是后来我注意到您的属性很奇怪:如果我主动锁定屏幕,我希望它一直被锁定直到输入密码。但是,如果在屏幕已锁定的情况下将计算机暂停一小段时间,您的脚本将为屏幕解锁。这就是为什么我接受其他答案。
UTF-8

确实,这将是一个问题=)
lemonsqueeze

-2

我可以帮你 首先,进入设置。选择此设置:

亮度锁定

将出现一个下拉菜单,显示“屏幕关闭”。

Screen_Turns_Off

单击下拉菜单后,请更改两个设置,使它们看起来像这样:

锁屏


这是行不通的。我将测试时间设置为30秒。这样,即使将计算机挂起仅5秒钟,我也必须输入密码。这样,即使将计算机挂起3分钟,我也可以立即使用桌面。
UTF-8

抱歉,我忘了一步。
BJsgoodlife

在按指定的OP启动挂起之后,这不会在预定的分钟数内使计算机处于未锁定状态。实际上,它在挂起开始时立即将其锁定。
b_laoshi
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.