summary refs log tree commit diff
path: root/pkgs/applications/window-managers
diff options
context:
space:
mode:
authorRoland Koebler <rk@simple-is-better.org>2018-05-07 22:25:14 +0200
committerRoland Koebler <rk@simple-is-better.org>2018-05-07 22:25:14 +0200
commit4ee409a59c106a63697b82f8f2c7e2df45a748f7 (patch)
tree8f3b332b4d8015009b0542a1e83f82823755fb5d /pkgs/applications/window-managers
parent938fd3042ee3ef49f5a18a5ae669a2f566382957 (diff)
downloadnixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar.gz
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar.bz2
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar.lz
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar.xz
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.tar.zst
nixlib-4ee409a59c106a63697b82f8f2c7e2df45a748f7.zip
i3lock/i3lock-color: meta: improve description
- i3lock-color: extend description to differ from i3lock
- i3lock/i3lock-color: add long description
Diffstat (limited to 'pkgs/applications/window-managers')
-rw-r--r--pkgs/applications/window-managers/i3/lock-color.nix25
-rw-r--r--pkgs/applications/window-managers/i3/lock.nix5
2 files changed, 28 insertions, 2 deletions
diff --git a/pkgs/applications/window-managers/i3/lock-color.nix b/pkgs/applications/window-managers/i3/lock-color.nix
index 66a6af2fbb08..ea1f1bda9f14 100644
--- a/pkgs/applications/window-managers/i3/lock-color.nix
+++ b/pkgs/applications/window-managers/i3/lock-color.nix
@@ -27,8 +27,29 @@ stdenv.mkDerivation rec {
     mv $out/bin/i3lock $out/bin/i3lock-color
   '';
   meta = with stdenv.lib; {
-    description = "A simple screen locker like slock";
-    homepage = https://i3wm.org/i3lock/;
+    description = "A simple screen locker like slock, enhanced version with extra configuration options";
+    longDescription = ''
+      Simple screen locker. After locking, a colored background (default: white) or
+      a configurable image is shown, and a ring-shaped unlock-indicator gives feedback
+      for every keystroke. After entering your password, the screen is unlocked again.
+
+      i3lock-color is forked from i3lock (https://i3wm.org/i3lock/) with the following
+      enhancements / additional configuration options:
+
+      - indicator:
+        - shape: ring or bar
+        - size: configurable
+        - all colors: configurable
+        - all texts: configurable
+        - visibility: can be always visible, can be restricted to some screens
+
+      - background: optionally show a blurred screen instead of a single color
+
+      - more information: show text at configurable positions:
+        - clock: time/date with configurable format
+        - keyboard-layout
+    '';
+    homepage = http://github.com/PandorasFox/i3lock-color;
     maintainers = with maintainers; [ garbas malyn ];
     license = licenses.bsd3;
 
diff --git a/pkgs/applications/window-managers/i3/lock.nix b/pkgs/applications/window-managers/i3/lock.nix
index 4d572e8c040d..d4bb3cdc1c2e 100644
--- a/pkgs/applications/window-managers/i3/lock.nix
+++ b/pkgs/applications/window-managers/i3/lock.nix
@@ -23,6 +23,11 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "A simple screen locker like slock";
+    longDescription = ''
+      Simple screen locker. After locking, a colored background (default: white) or
+      a configurable image is shown, and a ring-shaped unlock-indicator gives feedback
+      for every keystroke. After entering your password, the screen is unlocked again.
+    '';
     homepage = https://i3wm.org/i3lock/;
     maintainers = with maintainers; [ garbas malyn domenkozar ];
     license = licenses.bsd3;