Browse Source

add i3lock.pam (installed as /etc/pam.d/i3lock) which includes 'login' (Thanks Семён)

master
Michael Stapelberg 15 years ago
parent
commit
fc6b72eaec
2 changed files with 9 additions and 0 deletions
  1. +3
    -0
      Makefile
  2. +6
    -0
      i3lock.pam

+ 3
- 0
Makefile View File

@ -1,5 +1,6 @@
INSTALL=install
PREFIX=/usr
SYSCONFDIR=/etc
# Check if pkg-config is installed, we need it for building CFLAGS/LDFLAGS
ifeq ($(shell which pkg-config 2>/dev/null 1>/dev/null || echo 1),1)
@ -39,7 +40,9 @@ clean:
install: all
$(INSTALL) -d $(DESTDIR)$(PREFIX)/bin
$(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
$(INSTALL) -m 755 i3lock $(DESTDIR)$(PREFIX)/bin/i3lock
$(INSTALL) -m 644 i3lock.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock

+ 6
- 0
i3lock.pam View File

@ -0,0 +1,6 @@
#
# PAM configuration file for the i3lock screen locker. By default, it includes
# the 'login' configuration file (see /etc/pam.d/login)
#
@include login

Loading…
Cancel
Save