summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorSimeon Simeonov2023-03-14 23:30:32 +0100
committerSimeon Simeonov2023-03-18 13:37:27 +0100
commit66bd7af3e59e509000b8a55a9429e7a8e133fd81 (patch)
tree9eca5fe6eb76bb639fde682131c654eef17212df /README.md
parentffc15cad8238b101203147d4c9da64ee8e5a05b8 (diff)
Sync with upstream 2.14.1 and update the documentation2.2.14
Diffstat (limited to 'README.md')
-rw-r--r--README.md35
1 files changed, 19 insertions, 16 deletions
diff --git a/README.md b/README.md
index 80b6ac1..9ea58fe 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
1# i3lock-extended 1# i3lock-extended
2 2
3i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock). 3i3lock-extended is a fork of i3lock (https://github.com/i3/i3lock).
4It was started by Simeon Simeonov (sgs @ Freenode) as a small hack, 4It was started by Simeon Simeonov (sgs @ LiberaChat) as a small hack,
5implementing a LED-clock on top of an existing and robust screensaver. 5implementing a LED-clock on top of an existing and robust screensaver.
6 6
7i3lock-extended adds some additional functionality and is a free-software 7i3lock-extended adds some additional functionality and is a free-software
@@ -40,7 +40,9 @@ extended revision if used].
40### Gentoo 40### Gentoo
41 41
42 ```bash 42 ```bash
43 layman -a sgs 43 # add sgs' custom repository using app-eselect/eselect-repository
44 eselect repository add sgs
45
44 emerge x11-misc/i3lock-extended 46 emerge x11-misc/i3lock-extended
45 ``` 47 ```
46 48
@@ -58,25 +60,26 @@ Install the package:
58 ``` 60 ```
59 61
60 62
61### From source 63### From source (meson > 0.55.0)
62 64
63 ```bash 65 ```bash
64 wget https://simeon.simeonov.no/programs/i3lock_extended/downloads/i3lock-extended-<version>.tar.xz 66 wget https://github.com/blackm0re/i3lock_extended/releases/download/<version>/i3lock-extended-<version>.tar.xz
65 tar Jxvf i3lock-extended-<version>.tar.xz && cd i3lock-extended-<version> 67 tar Jxvf i3lock-extended-<version>.tar.xz
66 ./configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers 68 cd i3lock-extended-<version>
67 make 69 meson setup build --prefix=/usr
68 make install 70 meson compile -C build
71 sudo meson install -C build
69 ``` 72 ```
70 73
71 74
72### From git 75### From git (meson > 0.55.0)
73 76
74 ```bash 77 ```bash
75 git clone https://github.com/blackm0re/i3lock-extended.git && cd i3lock-extended 78 git clone https://github.com/blackm0re/i3lock-extended.git
76 autoreconf --force --install 79 cd i3lock-extended
77 ./configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers 80 meson setup build --prefix=/usr
78 make 81 meson compile -C build
79 make install 82 sudo meson install -C build
80 ``` 83 ```
81 84
82 85
@@ -112,12 +115,12 @@ i3lock-extended is hosted on GitHub: https://github.com/blackm0re/i3lock-extende
112 115
113## Author 116## Author
114 117
115Simeon Simeonov - sgs @ Freenode 118Simeon Simeonov - sgs @ LiberaChat
116 119
117 120
118## [License](https://github.com/blackm0re/i3lock-extended/blob/master/LICENSE) 121## [License](https://github.com/blackm0re/i3lock-extended/blob/master/LICENSE)
119 122
120Copyright 2020 Simeon Simeonov 123Copyright 2020-2023 Simeon Simeonov
121 124
122Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html 125Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html
123 126