4

I'd like to set up a PC with monitoring in the office. It should display some dashboard in a browser and a person should not be able to interact with it unless he or she for example knows the password. Perhaps it could just work as a sort of password protected screensaver displaying a predefined browser page. How can I achieve such result?

Kalmar
  • 462

1 Answers1

0

Install xtrlock (it's been around a long long time)

sudo apt install xtrlock 

I just open the browser to the page I want and have a plugin refreshing the page at the interval desired.

Then open a terminal, and type:

sleep 5; xtrlock

This gives you 5 seconds to select the web browser and bring it into the foreground, hiding the terminal, and then it locks the screen. You have to enter the users password to unlock the screen.

Only down side is that it has a little lock icon where the mouse cursor would be, but I just move that into the corner.

Jeff
  • 21
  • 3