blurlock: add page, i3lock: refresh (#7399)

feature/windows-fix-syntax-2
marchersimon 2021-11-14 02:28:51 +01:00 committed by GitHub
parent b8877dbc81
commit c5b52b9b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 10 deletions

21
pages/linux/blurlock.md Normal file
View File

@ -0,0 +1,21 @@
# blurlock
> A simple wrapper around the i3 screen locker `i3lock`, which blurs the screen.
> See also: `i3lock`.
> More information: <https://gitlab.manjaro.org/packages/community/i3/i3exit/-/blob/master/blurlock>.
- 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`

View File

@ -3,22 +3,30 @@
> Simple screen locker built for the i3 window manager.
> More information: <https://i3wm.org/i3lock>.
- 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`