summary refs log tree commit diff
path: root/pkgs/tools/X11/xbanish
diff options
context:
space:
mode:
authorHurshal Patel <hurshal@imap.cc>2016-04-18 23:42:52 -0700
committerHurshal Patel <hurshal@imap.cc>2016-04-19 23:33:38 -0700
commit9023722e771cffe17762ae0c390889ce3574ec5c (patch)
tree15173d36b91b0b65b06834f786c11d10ae6fe000 /pkgs/tools/X11/xbanish
parentf0d89ef874a40845e9bed38c0517aabab2f273bd (diff)
downloadnixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar.gz
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar.bz2
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar.lz
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar.xz
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.tar.zst
nixpkgs-9023722e771cffe17762ae0c390889ce3574ec5c.zip
xbanish: init at 1.4 :ghost:
Diffstat (limited to 'pkgs/tools/X11/xbanish')
-rw-r--r--pkgs/tools/X11/xbanish/default.nix45
1 files changed, 45 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xbanish/default.nix b/pkgs/tools/X11/xbanish/default.nix
new file mode 100644
index 00000000000..cbf8f3a7ff1
--- /dev/null
+++ b/pkgs/tools/X11/xbanish/default.nix
@@ -0,0 +1,45 @@
+{stdenv, fetchFromGitHub, libX11, libXi, libXt, libXfixes, libXext}:
+
+stdenv.mkDerivation rec {
+  version = "1.4";
+  name = "xbanish-${version}";
+
+  buildInputs = [
+    libX11 libXi libXt libXfixes libXext
+  ];
+
+  src = fetchFromGitHub {
+    owner = "jcs";
+    repo = "xbanish";
+    rev = "5cbc51a88739bc7ebe3ea3114ec423890d180146";
+    sha256 = "0n5aiqfwx9ga8qjszymfmbnmygcracrgvvpmgll7mflp2jnvzq6j";
+  };
+
+  preBuild = ''
+    makeFlagsArray+=("PREFIX=$out")
+  '';
+
+  preInstall = ''
+    mkdir -p $out/bin
+    mkdir -p $out/man/man1
+  '';
+
+  meta = {
+    description = "Hides mouse pointer while not in use";
+    longDescription = ''
+      xbanish hides the mouse cursor when you start typing, and shows it again when
+      the mouse cursor moves or a mouse button is pressed.  This is similar to
+      xterm's pointerMode setting, but xbanish works globally in the X11 session.
+
+      unclutter's -keystroke mode is supposed to do this, but it's broken[0].  I
+      looked into fixing it, but the unclutter source code is terrible, so I wrote
+      xbanish.
+
+      The name comes from ratpoison's "banish" command that sends the cursor to the
+      corner of the screen.
+    '';
+    license = stdenv.lib.licenses.bsd3;
+    maintainers = [stdenv.lib.maintainers.choochootrain];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}