Browse Source

update help/makefile/man page

master
Chris Guillott 9 years ago
parent
commit
b332ce611b
  1. 1
      .gitignore
  2. 8
      Makefile
  3. 8
      i3lock-color.1
  4. 2
      i3lock.c

1
.gitignore

@ -2,3 +2,4 @@ i3lock-color
*.o *.o
tags tags
*.swp *.swp
*.gz

8
Makefile

@ -2,6 +2,7 @@ INSTALL=install
PREFIX=/usr PREFIX=/usr
SYSCONFDIR=/etc SYSCONFDIR=/etc
PKG_CONFIG=pkg-config PKG_CONFIG=pkg-config
MANDIR=/usr/share/man
# Check if pkg-config is installed, we need it for building CFLAGS/LIBS # Check if pkg-config is installed, we need it for building CFLAGS/LIBS
ifeq ($(shell which $(PKG_CONFIG) 2>/dev/null 1>/dev/null || echo 1),1) ifeq ($(shell which $(PKG_CONFIG) 2>/dev/null 1>/dev/null || echo 1),1)
@ -40,15 +41,18 @@ install: all
$(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d $(INSTALL) -d $(DESTDIR)$(SYSCONFDIR)/pam.d
$(INSTALL) -m 755 i3lock-color $(DESTDIR)$(PREFIX)/bin/i3lock-color $(INSTALL) -m 755 i3lock-color $(DESTDIR)$(PREFIX)/bin/i3lock-color
$(INSTALL) -m 644 i3lock-color.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock-color $(INSTALL) -m 644 i3lock-color.pam $(DESTDIR)$(SYSCONFDIR)/pam.d/i3lock-color
gzip -kf i3lock-color.1
$(INSTALL) -m 644 i3lock-color.1.gz $(MANDIR)/man1/i3lock-color.1.gz
uninstall: uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/i3lock-color rm -f $(DESTDIR)$(PREFIX)/bin/i3lock-color
rm -f $(MANDIR)/man1/i3lock-color.1.gz
dist: clean dist: clean
[ ! -d i3lock-color-${VERSION} ] || rm -rf i3lock-color-${VERSION} [ ! -d i3lock-color-${VERSION} ] || rm -rf i3lock-color-${VERSION}
[ ! -e i3lock-c-olor-${VERSION}.tar.bz2 ] || rm i3lock-color-${VERSION}.tar.bz2 [ ! -e i3lock-color-${VERSION}.tar.bz2 ] || rm i3lock-color-${VERSION}.tar.bz2
mkdir i3lock-${VERSION} mkdir i3lock-${VERSION}
cp *.c *.h i3lock.1 i3lock.pam Makefile LICENSE README.md CHANGELOG i3lock-${VERSION} cp *.c *.h i3lock-color.1.gz i3lock.pam Makefile LICENSE README.md CHANGELOG i3lock-${VERSION}
sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION:=$(shell /bin/echo '${GIT_VERSION}' | sed 's/\\/\\\\/g')/g;s/^VERSION:=\(.*\)/VERSION:=${VERSION}/g' Makefile > i3lock-${VERSION}/Makefile sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION:=$(shell /bin/echo '${GIT_VERSION}' | sed 's/\\/\\\\/g')/g;s/^VERSION:=\(.*\)/VERSION:=${VERSION}/g' Makefile > i3lock-${VERSION}/Makefile
tar cfj i3lock-color-${VERSION}.tar.bz2 i3lock-color-${VERSION} tar cfj i3lock-color-${VERSION}.tar.bz2 i3lock-color-${VERSION}
rm -rf i3lock-color-${VERSION} rm -rf i3lock-color-${VERSION}

8
i3lock.1 → i3lock-color.1

@ -8,13 +8,13 @@
.fi .fi
.. ..
.TH i3lock 1 "JANUARY 2012" Linux "User Manuals" .TH i3lock-color 1 "JANUARY 2012" Linux "User Manuals"
.SH NAME .SH NAME
i3lock \- improved screen locker i3lock-color \- improved screen locker
.SH SYNOPSIS .SH SYNOPSIS
.B i3lock .B i3lock-color
.RB [\|\-v\|] .RB [\|\-v\|]
.RB [\|\-n\|] .RB [\|\-n\|]
.RB [\|\-b\|] .RB [\|\-b\|]
@ -32,7 +32,7 @@ i3lock \- improved screen locker
.RB [\|\-f\|] .RB [\|\-f\|]
.SH DESCRIPTION .SH DESCRIPTION
.B i3lock .B i3lock-color
is a simple screen locker like slock. After starting it, you will see a white 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 screen (you can configure the color/an image). You can return to your screen by
entering your password. entering your password.

2
i3lock.c

@ -990,7 +990,7 @@ int main(int argc, char *argv[]) {
break; break;
default: default:
errx(EXIT_FAILURE, "Syntax: i3lock-color [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]" errx(EXIT_FAILURE, "Syntax: i3lock-color [-v] [-n] [-b] [-d] [-c color] [-u] [-p win|default]"
" [-i image.png] [-t] [-e] [-I timeout] [-f] [-r|s]"); " [-i image.png] [-t] [-e] [-I timeout] [-f] [-r|s] [-S screen_number] [--fuckton-of-color-args=rrggbbaa]");
} }
} }

Loading…
Cancel
Save