Use xtrlock
$ sudo apt install xtrlock
Para desbloquear, digite a senha na tela.
Script de tempo limite automático de bloqueio de tela
Eu escrevi um script de tempo limite de bloqueio de tela rápido que iniciará automaticamente o bloqueio quando o computador estiver ocioso. Funciona como um protetor de tela.
Para ativá-lo, execute o aplicativo de inicialização do Ubuntu Dash Search para adicioná-lo aos seus aplicativos de inicialização automática.
O script precisa de xprintidle
para ser executado.
$ sudo apt install xprintidle'
O script
lockscreen.sh:
#!/bin/bash
# The lock timoeout defaults to 15 minutes.
# Enter an argument on the commanline to for a different timeout.
# xptintidle needs to be installed for the script to work
if [[ ! $(type xprintidle 2>/dev/null) ]]; then
notify-send "xprintidle not installed... lockscreen not enabled."
exit
fi
idle=15
[[ "" ]] && idle=
while :; do
if (($(xprintidle) > idle * 60000)); then
[[ $(ps h -C xtrlock) ]] || xtrlock
fi
sleep 10
done