i3lock/i3lock.1

137 lines
3.7 KiB
Groff
Raw Normal View History

.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
2012-01-03 19:20:37 +01:00
.TH i3lock 1 "JANUARY 2012" Linux "User Manuals"
.SH NAME
2010-07-16 17:56:15 +02:00
i3lock \- improved screen locker
.SH SYNOPSIS
.B i3lock
.RB [\|\-v\|]
.RB [\|\-n\|]
.RB [\|\-b\|]
.RB [\|\-d\|]
2009-06-27 23:06:44 +02:00
.RB [\|\-i
2010-07-16 17:56:15 +02:00
.IR image.png \|]
.RB [\|\-c
.IR color \|]
.RB [\|\-t\|]
2010-07-16 18:15:31 +02:00
.RB [\|\-p
.IR pointer\|]
2012-03-15 13:32:56 +01:00
.RB [\|\-u\|]
.RB [\|\-e\|]
.RB [\|\-I
.IR timeout\|]
.RB [\|\-f\|]
.SH DESCRIPTION
.B i3lock
2010-07-16 17:56:15 +02:00
is a simple screen locker like slock. After starting it, you will see a white
screen (you can configure the color/an image). You can return to your screen by
2010-07-21 01:45:11 +02:00
entering your password.
2010-07-16 17:56:15 +02:00
.SH IMPROVEMENTS
.IP \[bu] 2
i3lock forks, so you can combine it with an alias to suspend to RAM (run "i3lock && echo mem > /sys/power/state" to get a locked screen after waking up your computer from suspend to RAM)
.IP \[bu]
You can specify either a background color or a PNG image which will be displayed while your screen is locked.
.IP \[bu]
You can specify whether i3lock should bell upon a wrong password.
.IP \[bu]
i3lock uses PAM and therefore is compatible with LDAP, etc.
.SH OPTIONS
.TP
.B \-v, \-\-version
Display the version of your
.B i3lock
.TP
.B \-n, \-\-nofork
Don't fork after starting.
.TP
.B \-b, \-\-beep
Enable beeping. Be sure to not do this when you are about to annoy other people,
like when opening your laptop in a boring lecture.
.TP
.B \-d, \-\-dpms
Enable turning off your screen using DPMS. Note that, when you do not specify this
option, DPMS will turn off your screen after 15 minutes of inactivity anyways (if
you did not disable this in your X server).
.TP
.BI \-I\ seconds \fR,\ \fB\-\-inactivity-timeout= seconds
Specifies the number of seconds i3lock will wait for another password before
turning off the monitors, in case you entered a wrong password or canceled by
pressing Escape. Only makes sense together with \-d. If omitted, the default is
30 seconds.
2011-12-28 20:28:18 +01:00
.TP
.B \-u, \-\-no-unlock-indicator
Disable the unlock indicator. i3lock will by default show an unlock indicator
2011-12-28 20:28:18 +01:00
after pressing keys. This will give feedback for every keypress and it will
show you the current PAM state (whether your password is currently being
verified or whether it is wrong).
2009-06-27 23:06:44 +02:00
.TP
.BI \-i\ path \fR,\ \fB\-\-image= path
2010-07-16 20:55:20 +02:00
Display the given PNG image instead of a blank screen.
2009-06-27 23:06:44 +02:00
.TP
.BI \-c\ rrggbb \fR,\ \fB\-\-color= rrggbb
2014-03-18 21:40:17 +01:00
Turn the screen into the given color instead of white. Color must be given in 3-byte
format: rrggbb (i.e. ff0000 is red).
.TP
2010-07-16 20:36:11 +02:00
.B \-t, \-\-tiling
2012-03-15 13:32:34 +01:00
If an image is specified (via \-i) it will display the image tiled all over the screen
2009-08-02 21:47:39 +02:00
(if it is a multi-monitor setup, the image is visible on all screens).
.TP
.BI \-p\ win|default \fR,\ \fB\-\-pointer= win|default
If you specify "default",
.B i3lock
does not hide your mouse pointer. If you specify "win",
.B i3lock
displays a hardcoded Windows-Pointer (thus enabling you to mess with your
friends by using a screenshot of a Windows desktop as a locking-screen).
.TP
.B \-e, \-\-ignore-empty-password
When an empty password is provided by the user, do not validate
it. Without this option, the empty password will be provided to PAM
and, if invalid, the user will have to wait a few seconds before
another try. This can be useful if the XF86ScreenSaver key is used to
put a laptop to sleep and bounce on resume or if you happen to wake up
your computer with the enter key.
.TP
.B \-f, \-\-show-failed-attempts
Show the number of failed attempts, if any.
2014-12-27 21:54:41 +01:00
.TP
.B \-\-debug
Enables debug logging.
Note, that this will log the password used for authentication to stdout.
2014-12-27 21:54:41 +01:00
2012-02-23 17:03:59 +01:00
.SH SEE ALSO
.IR xautolock(1)
\- use i3lock as your screen saver
.SH AUTHOR
Michael Stapelberg <michael+i3lock at stapelberg dot de>
2009-08-02 21:47:39 +02:00
Jan-Erik Rediger <badboy at archlinux.us>