diff options
author | B. Watson <yalhcru@gmail.com> | 2014-03-19 07:04:49 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-03-21 13:01:20 -0500 |
commit | cf8cc4ba89d05f3daa5f634c635c0ce4c2b4c641 (patch) | |
tree | 8eb9ba1874d8fedd139240522a68921969416f3a /system/suckless-tools/pod | |
parent | f3704690c6cc26c3b178a757d3015f30a7297456 (diff) | |
download | slackbuilds-cf8cc4ba89d05f3daa5f634c635c0ce4c2b4c641.tar.gz |
system/suckless-tools: Added (utilities from suckless.org).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/suckless-tools/pod')
-rw-r--r-- | system/suckless-tools/pod/lsx.pod | 43 | ||||
-rw-r--r-- | system/suckless-tools/pod/sselp.pod | 36 | ||||
-rw-r--r-- | system/suckless-tools/pod/ssid.pod | 34 | ||||
-rw-r--r-- | system/suckless-tools/pod/swarp.pod | 39 | ||||
-rw-r--r-- | system/suckless-tools/pod/wmname.pod | 44 |
5 files changed, 196 insertions, 0 deletions
diff --git a/system/suckless-tools/pod/lsx.pod b/system/suckless-tools/pod/lsx.pod new file mode 100644 index 0000000000..0e9f5c9319 --- /dev/null +++ b/system/suckless-tools/pod/lsx.pod @@ -0,0 +1,43 @@ +# POD source for lsX man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 lsx.pod > lsx.1 + +=pod + +=head1 NAME + +B<lsX> - List executables in one or more directory trees. + +=head1 SYNOPSIS + +B<lsX> [dir] {[dir] ...} + +=head1 DESCRIPTION + +B<lsX> lists the executables in the given directories, non-recursively. +Non-directory arguments are ignored. If no arguments are given, B<lsX> +exits without doing anything. + +B<lsX> always exits with zero status. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 NOTES + +When using B<lsX> with multiple directory arguments, the 2nd and any +further directories must be absolute paths (this counts as a bug). + +B<lsX> may also be installed as B<lsx>. The name change is to avoid +conflicting with the B<lsx> symlink included in Slackware's minicom +package. If minicom isn't installed, B</usr/bin/lsx> will be a +symlink to B<lsX>. + +=head1 AUTHORS + +B<lsX> was written by Anselm R. Garbe (garbeam at gmail dot com) and +Sander van Dijk (a dot h dot vandijk at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/sselp.pod b/system/suckless-tools/pod/sselp.pod new file mode 100644 index 0000000000..2b812bef3b --- /dev/null +++ b/system/suckless-tools/pod/sselp.pod @@ -0,0 +1,36 @@ +# POD source for sselp man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 sselp.pod > sselp.1 + +=pod + +=head1 NAME + +B<sselp> - Simple X selection printer. + +=head1 SYNOPSIS + +B<sselp> + +=head1 DESCRIPTION + +B<sselp> prints the X selection to stdout. If there is no X client owning +the selection it just exits. Useful for scripts where you can query the +X selection without pressing mouse Button2 in cumbersome ways. + +B<sselp> always exits with zero status. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 ENVIRONMENT + +B<DISPLAY> - used in the usual way. + +=head1 AUTHORS + +B<wmname> was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/ssid.pod b/system/suckless-tools/pod/ssid.pod new file mode 100644 index 0000000000..e5df7b622b --- /dev/null +++ b/system/suckless-tools/pod/ssid.pod @@ -0,0 +1,34 @@ +# POD source for ssid man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 ssid.pod > ssid.1 + +=pod + +=head1 NAME + +B<ssid> - Simple setsid replacement. + +=head1 SYNOPSIS + +B<ssid> [-v] cmd [arg ...] + +=head1 DESCRIPTION + +B<ssid> runs a program in a new session. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 SEE ALSO + +setsid(2) + +setsid(1) + +=head1 AUTHORS + +B<ssid> was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/swarp.pod b/system/suckless-tools/pod/swarp.pod new file mode 100644 index 0000000000..87136887a5 --- /dev/null +++ b/system/suckless-tools/pod/swarp.pod @@ -0,0 +1,39 @@ +# POD source for swarp man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 swarp.pod > swarp.1 + +=pod + +=head1 NAME + +B<swarp> - simple pointer warp + +=head1 SYNOPSIS + +B<swarp> [x] [y] + +B<swarp> -v + +=head1 DESCRIPTION + +B<swarp> is a generic pointer warping utility for X. Example: + +# B<swarp 100 100> + +will warp the pointer to (100, 100) on your screen. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 ENVIRONMENT + +B<DISPLAY> - used in the usual way. + +=head1 AUTHORS + +B<ssid> was written by Anselm R. Garbe (garbeam at gmail dot com) +and Sander van Dijk (a dot h dot vandijk at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut diff --git a/system/suckless-tools/pod/wmname.pod b/system/suckless-tools/pod/wmname.pod new file mode 100644 index 0000000000..0659ac1d67 --- /dev/null +++ b/system/suckless-tools/pod/wmname.pod @@ -0,0 +1,44 @@ +# POD source for wmname man page. Convert with: +# pod2man --stderr -s1 -c"Suckless.org Tools" -r0.1 wmname.pod > wmname.1 + +=pod + +=head1 NAME + +B<wmname> - Prints/sets the EWMH WM name property. + +=head1 SYNOPSIS + +B<wmname> I<{[name]}> + +=head1 DESCRIPTION + +wmname prints/sets the window manager name property of the root window, +similar to how hostname(1) behaves. + +wmname is a nice utility to fix problems with JDK versions and other +broken programs assuming a reparenting window manager for instance. + +The following command prints the window manager name, if any: + +# B<wmname> + +The following command sets the window manager name, e.g. + +# B<wmname LG3D> + +This helpful when attempting to run java swing (broken) applications, +it makes them think they are running through the looking glass and behave +as expected. + +=head1 OPTIONS + +B<-v> prints the version number and exits. + +=head1 AUTHORS + +B<wmname> was written by Anselm R. Garbe (garbeam at gmail dot com). + +This man page written by B. Watson for the SlackBuilds.org project. It +may be used by anyone. +=cut |