From c5b52b9b8ce3e1796a4050a9d7ddd8d3fe72ba05 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Sun, 14 Nov 2021 02:28:51 +0100 Subject: [PATCH] blurlock: add page, i3lock: refresh (#7399) --- pages/linux/blurlock.md | 21 +++++++++++++++++++++ pages/linux/i3lock.md | 28 ++++++++++++++++++---------- 2 files changed, 39 insertions(+), 10 deletions(-) create mode 100644 pages/linux/blurlock.md diff --git a/pages/linux/blurlock.md b/pages/linux/blurlock.md new file mode 100644 index 000000000..253d7a4d7 --- /dev/null +++ b/pages/linux/blurlock.md @@ -0,0 +1,21 @@ +# blurlock + +> A simple wrapper around the i3 screen locker `i3lock`, which blurs the screen. +> See also: `i3lock`. +> More information: . + +- Lock the screen to a blurred screenshot of the current screen: + +`blurlock` + +- Lock the screen and disable the unlock indicator (removes feedback on keypress): + +`blurlock --no-unlock-indicator` + +- Lock the screen and don't hide the mouse pointer: + +`blurlock --pointer {{default}}` + +- Lock the screen and show the number of failed login attempts: + +`blurlock --show-failed-attempts` diff --git a/pages/linux/i3lock.md b/pages/linux/i3lock.md index fe40c4444..b90c3ff61 100644 --- a/pages/linux/i3lock.md +++ b/pages/linux/i3lock.md @@ -3,22 +3,30 @@ > Simple screen locker built for the i3 window manager. > More information: . -- Lock screen with a simple color background (rrggbb format): +- Lock the screen showing a white background: -`i3lock -c {{0000ff}}` +`i3lock` -- Lock screen to a PNG background: +- Lock the screen with a simple color background (rrggbb format): -`i3lock -i {{path/to/picture.png}}` +`i3lock --color {{0000ff}}` -- Disable the unlock indicator (removes feedback on keypress): +- Lock the screen to a PNG background: -`i3lock -u` +`i3lock --image {{path/to/file.png}}` -- Display mouse pointer instead of hiding it ('default' for default pointer, 'win' for an MS Windows pointer): +- Lock the screen and disable the unlock indicator (removes feedback on keypress): -`i3lock -p {{default|win}}` +`i3lock --no-unlock-indicator` -- Lock screen to a PNG background displayed in multiple monitors, with enabled mouse pointer: +- Lock the screen and don't hide the mouse pointer: -`i3lock -i {{path/to/picture.png}} -p {{default|win}} -t` +`i3lock --pointer {{default}}` + +- Lock the screen to a PNG background tiled over all monitors: + +`i3lock --image {{path/to/file.png}} --tiling` + +- Lock the screen and show the number of failed login attempts: + +`i3lock --show-failed-attempts`