aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-10-09 17:57:05 -0400
committerB. Stack <bgstack15@gmail.com>2022-10-09 17:57:05 -0400
commita7738f4dc72c9445623cd6f5348d7a80d4e52690 (patch)
treeb336daf9b226783c39e6e985410cecf46484de3d /man
downloadfbxkb-a7738f4dc72c9445623cd6f5348d7a80d4e52690.tar.gz
fbxkb-a7738f4dc72c9445623cd6f5348d7a80d4e52690.tar.bz2
fbxkb-a7738f4dc72c9445623cd6f5348d7a80d4e52690.zip
initial commit, straight from apt-get source
Diffstat (limited to 'man')
-rw-r--r--man/.cvsignore1
-rw-r--r--man/Makefile27
-rw-r--r--man/fbxkb.125
3 files changed, 53 insertions, 0 deletions
diff --git a/man/.cvsignore b/man/.cvsignore
new file mode 100644
index 0000000..ee3a43e
--- /dev/null
+++ b/man/.cvsignore
@@ -0,0 +1 @@
+fbxkb.1.gz
diff --git a/man/Makefile b/man/Makefile
new file mode 100644
index 0000000..2f8d321
--- /dev/null
+++ b/man/Makefile
@@ -0,0 +1,27 @@
+# Part 0
+# load common stuff
+TOPDIR = ..
+include $(TOPDIR)/Makefile.common
+
+# backslashify slashes to avoid problems with sed
+BPREFIX := $(subst /,\/,$(PREFIX))
+
+SRC = fbxkb.1
+TARGET = fbxkb.1.gz
+
+all: $(TARGET)
+$(TARGET): $(SRC)
+ sed 's/PREFIX/$(BPREFIX)/g' < $(SRC) | gzip - > $@
+
+
+
+clean:
+ $(RM) $(TARGET) *~
+
+
+install: all
+ install -d $(PREFIX)/share/man/man1
+ install -m 644 $(TARGET) $(PREFIX)/share/man/man1
+
+uninstall:
+ rm -f $(PREFIX)/share/man/man1/$(TARGET)
diff --git a/man/fbxkb.1 b/man/fbxkb.1
new file mode 100644
index 0000000..4ac232c
--- /dev/null
+++ b/man/fbxkb.1
@@ -0,0 +1,25 @@
+.\" man page originally for the Debian/GNU Linux system
+.TH FBXKB "1" "January 2007" "fbxkb 0.6" "User Commands"
+.SH NAME
+fbxkb \- a lightweight X11 keyboard switcher.
+.SH SYNOPSIS
+.B fbxkb
+.br
+.SH DESCRIPTION
+.PP
+fbxkb is X11 keyboard switcher, which provides visual information
+about current keyboard. It shows a flag of current keyboard in a
+systray area and allows you to switch to another one.
+
+fbxkb requires NETWM (www.freedesktop.org) compliant window manager.
+It's written in C and uses the GTK+-2.4 library only (no GNOME is needed).
+
+Most updated info about fbxkb can be found on its home page:
+http://fbxkb.sf.net/
+.SH OPTIONS
+.TP
+fbxkb hasn't options. It just works.
+.SH AUTHOR
+fbxkb was written by Anatoly Asviyan <aanatoly@users.sf.net>.
+This manual page was originally written for the
+Debian GNU/Linux system by Vadim Vatlin <vatlin@sthbel.ru>.
bgstack15