You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.9 KiB

9 years ago
# lightdm-webkit2-greeter
9 years ago
[![Latest Release](https://img.shields.io/github/release/Antergos/lightdm-webkit2-greeter.svg?style=flat-square)](https://github.com/Antergos/lightdm-webkit2-greeter/releases) [![Coverity Scan Build Status](https://img.shields.io/coverity/scan/6871.svg?style=flat-square)](https://scan.coverity.com/projects/antergos-lightdm-webkit2-greeter)
9 years ago
### Dependencies
9 years ago
| Name | Arch Pkg | Ubuntu Pkg |
|-------|---------|-----------|
|liblightdm-gobject-1|lightdm|liblightdm-gobject-1|
|gtk+ 3|gtk3|libgtk-3-0|
|webkit2gtk-4.0|webkitgtk|libwebkit2gtk|
|dbus-glib-1|dbus-glib|dbus-glib|
|[antergos-wallpapers](http://antergos.com/antergos-wallpapers-0.6.zip)|antergos-wallpapers|N/A|
- Notes:
- antergos-wallpapers should be installed to `/usr/share/antergos/wallpapers`
9 years ago
### Build Dependencies
9 years ago
| Name | Arch Pkg | Ubuntu Pkg |
|-------|---------|-----------|
|exo-csource|exo|libexo|
9 years ago
9 years ago
### How To Build
The process is slightly different depending on how you obtain the source.
#### Use Git To Clone This Repo
```sh
git clone https://github.com/Antergos/lightdm-webkit2-greeter.git greeter
cd greeter
9 years ago
git submodule init && git submodule update
9 years ago
./autogen.sh --prefix=/usr
make
sudo make install
```
#### Download Repo In Archive Format (tar.gz, zip, etc)
```sh
wget https://github.com/Antergos/lightdm-webkit2-greeter/archive/master.zip
unzip master.zip
9 years ago
cd lightdm-web**/themes
9 years ago
rm -rf antergos
wget https://github.com/Antergos/lightdm-webkit-theme-antergos/archive/master.zip
unzip master.zip
mv lightdm** antergos
9 years ago
cd ..
9 years ago
./autogen.sh --prefix=/usr
make
sudo make install
9 years ago
### Theme JavaScript API:
The greeter exposes a JavaScript API to greeter themes which they must use to interact with the greeter (in order to facilitate the user login process). The [API Documentation](https://antergos.com/wiki/development/lightdm-webkit2-greeter-theme-javascript-api/) is a W.I.P.
9 years ago
```