3
0
Fork 0
forked from mirrors/nixpkgs

xbanish: init at 1.4 👻

This commit is contained in:
Hurshal Patel 2016-04-18 23:42:52 -07:00
parent f0d89ef874
commit 9023722e77
No known key found for this signature in database
GPG key ID: F74BB9863B7DBD82
3 changed files with 48 additions and 0 deletions

View file

@ -72,6 +72,7 @@
cfouche = "Chaddaï Fouché <chaddai.fouche@gmail.com>";
chaoflow = "Florian Friesdorf <flo@chaoflow.net>";
chattered = "Phil Scott <me@philscotted.com>";
choochootrain = "Hurshal Patel <hurshal@imap.cc>";
christopherpoole = "Christopher Mark Poole <mail@christopherpoole.net>";
cleverca22 = "Michael Bishop <cleverca22@gmail.com>";
coconnor = "Corey O'Connor <coreyoconnor@gmail.com>";

View file

@ -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;
};
}

View file

@ -3674,6 +3674,8 @@ in
xarchiver = callPackage ../tools/archivers/xarchiver { };
xbanish = callPackage ../tools/X11/xbanish { };
xbrightness = callPackage ../tools/X11/xbrightness { };
xfstests = callPackage ../tools/misc/xfstests { };