1
0
Fork 0
mirror of https://github.com/Raymo111/i3lock-color.git synced 2024-11-11 13:50:52 -05:00
i3lock-color/README.md

87 lines
3.5 KiB
Markdown
Raw Normal View History

2010-07-16 11:47:42 -04:00
i3lock - improved screen locker
2016-02-08 16:12:27 -05:00
===============================
_This is just a re-patched version of i3lock with the commits from [i3lock-color](https://github.com/eBrnd/i3lock-color); all the credit for the color functionality goes to [eBrnd](https://github.com/eBrnd/) !_
2017-12-08 21:32:31 -05:00
![i3lock-color in action. Why are you reading this?](https://github.com/PandorasFox/i3lock-color/raw/master/screenshot.png "Screenshot sample")
2016-02-08 16:12:27 -05:00
i3lock 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 entering your password.
2009-03-11 17:17:00 -04:00
2016-02-08 16:12:27 -05:00
Many little improvements have been made to i3lock over time:
2009-03-11 17:17:00 -04:00
2016-02-08 16:12:27 -05:00
- 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)
2009-03-11 17:17:00 -04:00
2017-12-08 21:32:31 -05:00
- You can specify either a background color or an image (JPG or PNG), which will be
2016-02-08 16:12:27 -05:00
displayed while your screen is locked.
2009-03-11 17:17:00 -04:00
2016-02-08 16:12:27 -05:00
- You can specify whether i3lock should bell upon a wrong password.
2009-03-11 17:17:00 -04:00
2016-02-08 16:12:27 -05:00
- i3lock uses PAM and therefore is compatible with LDAP etc.
2017-05-30 16:46:43 -04:00
On OpenBSD i3lock uses the bsd\_auth(3) framework.
2016-02-08 16:12:27 -05:00
2017-12-08 21:32:31 -05:00
## Additional features in this fork
- You can also specify additional options, as detailed in the manpage. This includes, but is not limited to, the following:
- Color options for the following:
- verification ring
- interior ring color
- ring interior line color
- key highlight color
- backspace highlight color
- text colors for most/all strings
- Changing all of the above depending on PAM's authentication status
- Blurring the current screen and using that as the lock background
- Showing a clock in the indicator
- refreshing on a timer, instead of on each keypress
- Positioning the various UI elements
- Changing the ring radius and thickness, as well as text size
- A new bar indicator, which replaces the ring indicator with its own set of options
- An experimental thread for driving the redraw ticks, so that things like the bar/clock still update when PAM is blocking
2017-08-15 10:30:16 -04:00
## Building
Before you build - check and see if there's a packaged version available for your distro (there usually is, either in a community repo/PPA).
If there's no packaged version available - think carefully, since you're using a forked screen locker at your own risk.
2017-12-06 13:19:34 -05:00
i3lock now uses GNU autotools for building; you'll need to do something like `autoreconf -i && ./configure && make` to build.
2017-08-15 10:30:16 -04:00
### Required Packages
2016-02-08 16:12:27 -05:00
- pkg-config
- libxcb
- libxcb-util
- libpam-dev
- libcairo-dev
2017-12-08 21:32:31 -05:00
- libfontconfig-dev
- libxcb-composite0
- libxcb-composite0-dev
2016-02-08 16:12:27 -05:00
- libxcb-xinerama
- libxcb-randr
2016-02-08 16:12:27 -05:00
- libev
- libx11-xcb-dev
- libxkbcommon >= 0.5.0
- libxkbcommon-x11 >= 0.5.0
2017-12-08 00:09:20 -05:00
- libjpeg-turbo >= 1.4.90
2016-02-08 16:12:27 -05:00
2016-11-05 14:53:13 -04:00
##### Aur Package
2017-12-06 13:19:34 -05:00
[Stable](https://aur.archlinux.org/packages/i3lock-color/)
[Git](https://aur.archlinux.org/packages/i3lock-color-git)
2016-02-08 16:12:27 -05:00
Running i3lock
2009-03-11 17:17:00 -04:00
-------------
Simply invoke the 'i3lock' command. To get out of it, enter your password and
2016-02-08 16:12:27 -05:00
press enter.
2017-12-08 21:32:31 -05:00
A [sample script](https://github.com/PandorasFox/i3lock-color/blob/master/lock.sh) is included in this repository. [Here](https://streamable.com/fpl46) is a short clip of that script in action!
On OpenBSD the `i3lock` binary needs to be setgid `auth` to call the
authentication helpers, e.g. `/usr/libexec/auth/login_passwd`.
2016-02-08 16:12:27 -05:00
Upstream
--------
2017-12-08 21:32:31 -05:00
Please submit pull requests for i3lock things to https://github.com/i3/i3lock and pull requests for features to me here at https://github.com/PandorasFox/i3lock-color.