From 008766f1312c319be3eb7216d57378580ec4a19a Mon Sep 17 00:00:00 2001 From: Victor Wagner Date: Fri, 24 Feb 2006 18:39:13 +0000 Subject: [PATCH] Reimport after CVS crash --- IDEAS | 10 + Makefile | 29 + balloonhelp.tcl | 225 ++++++++ fm | 8 + fubar.tcl | 960 ++++++++++++++++++++++++++++++++++ holydays | 7 + hotkeys.tcl | 61 +++ icons/computer.xpm | 29 + icons/fax.xpm | 24 + icons/ir.xpm | 21 + icons/lan.gif | Bin 0 -> 86 bytes icons/lan.xpm | 22 + icons/modem.xpm | 22 + icons/pda.xpm | 22 + icons/printer.xpm | 22 + icons/unknown.xpm | 21 + mail | 7 + man | 6 + menu/9.Quit/Exit_FUBAR.tcl | 1 + menu/9.Quit/Quit_fvwm.fvwm | 1 + menu/9.Quit/Restart_FUBAR.tcl | 2 + menu/9.Quit/Restart_fvwm.fvwm | 1 + menu/9.Quit/Suspend | 2 + openssl.db | Bin 0 -> 70656 bytes plugins/apm | 129 +++++ plugins/clock | 165 ++++++ plugins/dict | 69 +++ plugins/irda | 439 ++++++++++++++++ plugins/irda.conf | 14 + plugins/irda.txt | 65 +++ plugins/mail | 117 +++++ plugins/mail.txt | 45 ++ plugins/mount | 170 ++++++ plugins/phone_vcf | 250 +++++++++ plugins/phonebook | 111 ++++ setup_userdir | 55 ++ tooltip.tcl | 111 ++++ 37 files changed, 3243 insertions(+) create mode 100644 IDEAS create mode 100644 Makefile create mode 100644 balloonhelp.tcl create mode 100755 fm create mode 100755 fubar.tcl create mode 100644 holydays create mode 100644 hotkeys.tcl create mode 100644 icons/computer.xpm create mode 100644 icons/fax.xpm create mode 100644 icons/ir.xpm create mode 100644 icons/lan.gif create mode 100644 icons/lan.xpm create mode 100644 icons/modem.xpm create mode 100644 icons/pda.xpm create mode 100644 icons/printer.xpm create mode 100644 icons/unknown.xpm create mode 100755 mail create mode 100755 man create mode 100644 menu/9.Quit/Exit_FUBAR.tcl create mode 100644 menu/9.Quit/Quit_fvwm.fvwm create mode 100644 menu/9.Quit/Restart_FUBAR.tcl create mode 100644 menu/9.Quit/Restart_fvwm.fvwm create mode 100755 menu/9.Quit/Suspend create mode 100644 openssl.db create mode 100644 plugins/apm create mode 100644 plugins/clock create mode 100644 plugins/dict create mode 100644 plugins/irda create mode 100644 plugins/irda.conf create mode 100644 plugins/irda.txt create mode 100644 plugins/mail create mode 100644 plugins/mail.txt create mode 100644 plugins/mount create mode 100644 plugins/phone_vcf create mode 100644 plugins/phonebook create mode 100644 setup_userdir create mode 100644 tooltip.tcl diff --git a/IDEAS b/IDEAS new file mode 100644 index 0000000..d9dde4d --- /dev/null +++ b/IDEAS @@ -0,0 +1,10 @@ +1. óÄÅÌÁÔØ ÞÔÏÂÙ ÐÒÉ ÎÁÖÁÔÉÉ ÎÁ ËÎÏÐËÕ Run ÉÓÔÏÒÉÑ ÐÏÓÌÅÄÎÉÈ ËÏÍÁÎÄ ÂÙÌÁ +×ÉÄÎÁ ÓÒÁÚÕ. (×ÏÚÍÏÖÎÏ, ÏÔËÁÚÁ×ÛÉÓØ ÏÔ ÏÔÄÅÌØÎÏÊ ËÎÏÐËÉ Start) + +2. äÏÂÁ×ÉÔØ × ÏËÎÏ Run ÞÅËÂÏËÓ "ÅÓÌÉ ÔÁËÁÑ ÐÒÏÇÒÁÍÍÁ ÕÖÅ ×ÙÐÏÌÎÑÅÔÓÑ, +×ÙÔÁÝÉÔØ Å£ ÎÁ×ÅÒÈ, Á ÎÅ ÚÁÐÕÓËÁÔØ ÎÏ×ÕÀ" + +3. ÷ ÍÅÎÀ xterm ÐÏ ÐÒÁ×ÏÊ ËÌÁ×ÉÛÅ ÐÏËÁÚÙ×ÁÔØ ÍÅÎÀ ÔÅÈ xterm-Ï×, ËÏÔÏÒÙÅ +ÕÖÅ ÏÔËÒÙÔÙ ÎÁ ÄÁÎÎÏÍ ÈÏÓÔÅ. (ÎÏ ÞÔÏÂÙ ÂÙÌÁ ÐÏÚÉÃÉÑ New xterm) + + diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f9144df --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +prefix=/usr/local + +PLUGINS= apm clock dict irda mail mount phonebook phone_vcf +SCIRPTS=fm mail man +CONFIG_FILES=holydays plugins/irda.conf + +all: + +install: + install -d -m 0755 $(DESTDIR)${prefix}/lib + install -d -m 0755 $(DESTDIR)${prefix}/lib/fubar + install -d -m 0755 $(DESTDIR)${prefix}/lib/fubar/plugins + install -d -m 0755 $(DESTDIR)${prefix}/lib/fubar/menu + install -m 755 -o root fubar.tcl $(DESTDIR)${prefix}/lib/fubar + install -m 755 -o root man $(DESTDIR)$(prefix)/lib/fubar + install -m 755 -o root mail $(DESTDIR)$(prefix)/lib/fubar + install -m 644 -o root setup_userdir $(DESTDIR)${prefix}/lib/fubar + install -m 644 -o root balloonhelp.tcl $(DESTDIR)${prefix}/lib/fubar + for i in ${SCRIPTS}; do\ + install -m 755 -o root $$i ${DESTDIR}${prefix}/lib/fubar;\ + done + for i in ${PLUGINS}; do\ + install -m 644 -o root plugins/$$i ${DESTDIR}${prefix}/lib/fubar/plugins;\ + done + for i in ${CONFIG_FILES}; do\ + install -m 644 -o root $$i ${DESTDIR}${prefix}/lib/fubar;\ + done + cp -r menu/* $(DESTDIR)${prefix}/lib/fubar/menu + find $(DESTDIR)$(prefix)/lib/fubar/menu -name CVS -type d |xargs rm -rf diff --git a/balloonhelp.tcl b/balloonhelp.tcl new file mode 100644 index 0000000..3f0ce51 --- /dev/null +++ b/balloonhelp.tcl @@ -0,0 +1,225 @@ +## balloonhelp.tcl +## Balloon Help Routines +## +## Jeffrey Hobbs +## Initiated: 28 October 1996 +## + +##------------------------------------------------------------------------ +## PROCEDURE +## balloonhelp +## +## DESCRIPTION +## Implements a balloon help system +## +## ARGUMENTS +## balloonhelp