1
0
mirror of https://github.com/tiyn/slock.git synced 2025-04-19 16:17:46 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
1d78f190a7 readme updated 2023-08-22 15:18:39 +02:00
9166655b4e base: added base image 2023-08-22 14:34:03 +02:00
4 changed files with 13 additions and 3 deletions

View File

@ -36,7 +36,7 @@ dist: clean
@echo creating dist tarball
@mkdir -p slock-${VERSION}
@cp -R LICENSE Makefile README slock.1 config.mk \
${SRC} explicit_bzero.c config.def.h arg.h util.h slock-${VERSION}
${SRC} config.def.h arg.h util.h slock-${VERSION}
@tar -cf slock-${VERSION}.tar slock-${VERSION}
@gzip slock-${VERSION}.tar
@rm -rf slock-${VERSION}

10
README.md Normal file
View File

@ -0,0 +1,10 @@
# slock
This is my patched version of slock. The base version is directly from suckless.org.
## Installation
The most basic way is to clone the repository and then invoke make.
- `git clone https://github.com/tiyn/st-0.9.0`
- `make clean install`

View File

@ -1,6 +1,6 @@
/* user and group to drop privileges to */
static const char *user = "nobody";
static const char *group = "nogroup";
static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */

View File

@ -1,5 +1,5 @@
# slock version
VERSION = 1.4
VERSION = 1.5
# Customize below to fit your system