├── .clang-format ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── COPYRIGHT ├── Configfile.m4 ├── Configure ├── MGR-HOWTO.sgml ├── MGR-HOWTO.txt ├── MGR.lsm ├── Makefile ├── README.rst ├── SUPPORT ├── Versions ├── ChangeLog-4.10 ├── ChangeLog-4.11 ├── ChangeLog-4.12 ├── ChangeLog-4.4 ├── ChangeLog-4.5 ├── ChangeLog-4.6 ├── ChangeLog-4.8 ├── ChangeLog-4.9 ├── Configfile.hgc ├── Configfile.lx ├── Configfile.lxco ├── Configfile.lxcos3 ├── Configfile.lxcots ├── Configfile.lxs3 ├── Configfile.sun ├── Configfile.suncg3 ├── Configfile.sunmono ├── RCSversions ├── ReleaseNotes59 ├── ReleaseNotes62 ├── ReleaseNotes63 ├── ReleaseNotes68 ├── ReleaseNotes69 ├── rcslog.4.12.1.1.blit ├── rcslog.4.12.1.1.include ├── rcslog.4.12.1.1.mgr └── sunmono.rcslog.4.12 ├── cmake ├── PackagingConfig.cmake └── modules │ ├── AddCCompilerFlag.cmake │ └── FindSDL2.cmake ├── doc ├── CMakeLists.txt ├── Makefile ├── README ├── abstract.ms ├── croff │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── croff.1 │ ├── croff.l │ ├── hash.c │ ├── hash.h │ ├── keywords │ └── mktable.c ├── doc.1 ├── doc.2 ├── doc.3 ├── doc.4 ├── doc.5 ├── doc.6 ├── doc.9 ├── groffit ├── index.awk ├── macros ├── manual.out └── p10 ├── font ├── .mgrc ├── Copyleft.txt ├── Cursorname.txt ├── FILELIST.txt ├── FONTDIR.txt ├── Fontorig.txt ├── GRgallant12x21 ├── History.txt ├── Looking4.txt ├── Moreorigin.txt ├── Xfixed-13x25 ├── apeaus-8x14 ├── apeaus-8x16 ├── apeaus-8x8 ├── backward-8x14 ├── betagreek-8x16 ├── bhexall-8x14 ├── block-8x14 ├── colossus12x20 ├── cour28x41 ├── cour32x44 ├── cour41x59 ├── cour48x66 ├── cour58x81 ├── cour65x89 ├── cour75x103 ├── courier-10x17 ├── courier-12x20 ├── courier-16x25 ├── courier-7x10 ├── courier-8x14 ├── courier-9x12 ├── courier-9x15 ├── cp437-8x16 ├── cp850-8x14 ├── cp850-8x16 ├── cp850-8x19 ├── cp850-8x8 ├── cp850thn-8x16 ├── cp852-8x14 ├── cp852-8x16 ├── cp852-8x19 ├── cp852-8x8 ├── cp852thn-8x16 ├── default-8x16 ├── dot1x1 ├── dsvgaapl-8x14 ├── gacha-8x16 ├── gachabold-9x16 ├── gal13x20 ├── hack4th-8x16 ├── handugly-8x16 ├── handwrit-8x14 ├── handwrit-8x16 ├── heb-bold-8x16 ├── hebclrgf-8x16 ├── hollow-8x14 ├── hrkgreek-8x14 ├── icons-8x14 ├── inverted-8x14 ├── is8859-1-8x14 ├── is8859-1-8x16 ├── is8859-1-8x8 ├── is8859-10-8x14 ├── is8859-10-8x16 ├── is8859-10-8x8 ├── is8859-2-8x14 ├── is8859-2-8x16 ├── is8859-2-8x8 ├── is8859-3-8x14 ├── is8859-3-8x16 ├── is8859-3-8x8 ├── is8859-4-8x14 ├── is8859-4-8x16 ├── is8859-4-8x8 ├── is8859-5-8x14 ├── is8859-5-8x16 ├── is8859-5-8x8 ├── is8859-6-8x14 ├── is8859-6-8x16 ├── is8859-6-8x8 ├── is8859-7-8x14 ├── is8859-7-8x16 ├── is8859-7-8x8 ├── is8859-8-8x14 ├── is8859-8-8x16 ├── is8859-8-8x8 ├── is8859-9-8x14 ├── is8859-9-8x16 ├── is8859-9-8x8 ├── italics-8x14 ├── lucidQBS-10x16 ├── lucidQBS-8x14 ├── lucidQRS-10x16 ├── lucidQRS-8x14 ├── medieval-8x14 ├── nil2-2x3 ├── octal-7x14 ├── old-engl-8x14 ├── oldeng22x30 ├── reverse-8x14 ├── rimrock-8x10 ├── rmrkbold-8x14 ├── sail6x8 ├── sail7x11 ├── ser7x12 ├── ser8x16 ├── shadow38x40 ├── sideways-8x6 ├── subsup-8x16 ├── symbol-10x11 ├── symbol-12x14 ├── symbol-15x16 ├── symbol-17x20 ├── symbol-21x25 ├── symbol-27x32 ├── tech-9x16 ├── techB-9x16 ├── tiny4x7 ├── vga-rom-8x14 ├── vga-rom-8x16 ├── vga-rom-8x8 ├── wgreek-22x28 └── wgreek-9x17 ├── hfont ├── cyril.c ├── greek.c ├── greek.s ├── hindi.d ├── italic.d ├── italic.t ├── roman.c ├── roman.d ├── roman.s ├── roman.t ├── script.s └── special.s ├── icon ├── apple ├── arrdown ├── arrleft ├── arrne ├── arrright ├── arrup ├── bandaid_bad ├── bignot ├── biplane ├── blank ├── block ├── blockmask ├── bomb ├── buttons ├── cherries ├── chess ├── cloudy ├── conch1 ├── conch2 ├── copter ├── copy ├── cpath ├── cube1 ├── cube2 ├── cube3 ├── cube4 ├── cube5 ├── debug ├── dither ├── dkong1 ├── dng ├── dnguy ├── document ├── easel ├── editor ├── emacs ├── eye │ ├── eye │ ├── eye1 │ ├── eye10 │ ├── eye11 │ ├── eye12 │ ├── eye13 │ ├── eye14 │ ├── eye15 │ ├── eye16 │ ├── eye17 │ ├── eye18 │ ├── eye19 │ ├── eye2 │ ├── eye20 │ ├── eye21 │ ├── eye22 │ ├── eye23 │ ├── eye24 │ ├── eye3 │ ├── eye4 │ ├── eye5 │ ├── eye6 │ ├── eye7 │ ├── eye8 │ └── eye9 ├── eye_bld1 ├── eye_bld2 ├── eye_bld3 ├── eyefrontmask ├── eyesidemask ├── eyesmaller ├── file-cabinet ├── file_open ├── file_shut ├── file_shutb ├── floppy ├── floppy1 ├── folder ├── foldercopy ├── foldergroup ├── folderin ├── folderkey ├── folderlocked ├── folderout ├── forty_five ├── fourarrows ├── frog1 ├── frog2 ├── gcan_open ├── gcan_shut ├── ghost ├── gnu ├── gnumacs ├── graphics ├── grey │ ├── 0 │ ├── 15 │ ├── 20 │ ├── 25 │ ├── 33 │ ├── 50 │ ├── 67 │ ├── 75 │ ├── 80 │ ├── 85 │ └── 100 ├── hammer ├── hand ├── hand_mouse ├── ify ├── interdict ├── letter ├── letters ├── lock ├── martini ├── mbox-opening ├── mbox2 ├── mbox_closed ├── mbox_full ├── mbox_open ├── mbox_zip ├── mclock │ ├── hhand0 │ ├── hhand1 │ ├── hhand10 │ ├── hhand11 │ ├── hhand2 │ ├── hhand3 │ ├── hhand4 │ ├── hhand5 │ ├── hhand6 │ ├── hhand7 │ ├── hhand8 │ ├── hhand9 │ ├── mhand0 │ ├── mhand1 │ ├── mhand10 │ ├── mhand11 │ ├── mhand2 │ ├── mhand3 │ ├── mhand4 │ ├── mhand5 │ ├── mhand6 │ ├── mhand7 │ ├── mhand8 │ ├── mhand9 │ ├── mhhand0 │ ├── mhhand1 │ ├── mhhand10 │ ├── mhhand11 │ ├── mhhand2 │ ├── mhhand3 │ ├── mhhand4 │ ├── mhhand5 │ ├── mhhand6 │ ├── mhhand7 │ ├── mhhand8 │ ├── mhhand9 │ ├── mickface │ ├── mmhand0 │ ├── mmhand1 │ ├── mmhand10 │ ├── mmhand11 │ ├── mmhand2 │ ├── mmhand3 │ ├── mmhand4 │ ├── mmhand5 │ ├── mmhand6 │ ├── mmhand7 │ ├── mmhand8 │ └── mmhand9 ├── mgr_audio ├── mgrbd │ ├── blob │ ├── blob2 │ ├── boulder │ ├── diamond │ ├── diamond2 │ ├── eater │ ├── eater2 │ ├── exit2 │ ├── exit3 │ ├── explosion │ ├── grass │ ├── grey │ ├── icon │ ├── lmonster │ ├── lmonster2 │ ├── nucbal │ ├── player │ ├── player2 │ ├── rmonster │ ├── rmonster2 │ ├── space │ ├── steel │ ├── tinkle1 │ ├── tinkle2 │ ├── wall │ └── wall2 ├── mouse_cut_lh ├── movie ├── movie1 ├── movie2 ├── msg_board ├── msg_none ├── msg_note ├── msg_read ├── nobozos1 ├── nose ├── noseback ├── nosefront ├── nosmoking ├── notes ├── null ├── partlycloudy ├── partlysunny ├── penciledit ├── penedit ├── ptr_laser ├── ptr_laseron ├── ptr_tj ├── rainy ├── reel1 ├── reel2 ├── reel3 ├── reel4 ├── sandclock ├── screwdriver ├── scube1 ├── scube2 ├── scube3 ├── scube4 ├── scube5 ├── select ├── server │ ├── ball_1 │ ├── ball_2 │ ├── ball_3 │ ├── ball_4 │ ├── ball_5 │ ├── ball_6 │ ├── ball_7 │ ├── ball_8 │ ├── cr │ ├── def_pattern │ ├── mouse_arrow │ ├── mouse_box │ ├── mouse_bull │ ├── mouse_bull2 │ ├── mouse_cross │ ├── mouse_cup │ └── mouse_cut ├── shell ├── slider_h ├── small_stop ├── smalldriver ├── smallserver │ ├── ball_1 │ ├── ball_2 │ ├── ball_3 │ ├── ball_4 │ ├── ball_5 │ ├── ball_6 │ ├── ball_7 │ ├── ball_8 │ ├── cr │ ├── def_pattern │ ├── mouse_arrow │ ├── mouse_box │ ├── mouse_bull │ ├── mouse_bull2 │ ├── mouse_cross │ ├── mouse_cup │ └── mouse_cut ├── smallspiff1 ├── smallspiff2 ├── smeye1 ├── smeye2 ├── smeye3 ├── smeye4 ├── smileheart ├── smouse0 ├── smouse1 ├── smouse2 ├── smouse3 ├── soundeditor ├── sphere ├── stopsign ├── stormy ├── sun_mouse ├── sunny ├── tex-cweb-ch ├── tex-cweb-s ├── tex-dvi ├── tex-gf ├── tex-latex-s ├── tex-mf-s ├── tex-pk ├── tex-sm-mf ├── tex-sm-tex ├── tex-tex-s ├── tex-tfm ├── tex-vf ├── thinker ├── tombstone ├── tty ├── ttys ├── umbrella ├── verysunny ├── veye1 ├── veye2 ├── veye3 ├── wallpaper ├── weird_thing ├── www │ ├── AnchoredImage │ ├── DelayedImage │ ├── NoImage │ ├── back │ ├── back2 │ ├── ball │ ├── binary │ ├── binhex │ ├── blank │ ├── broken │ ├── burst │ ├── caution │ ├── clock │ ├── compressed │ ├── directory │ ├── disk.drive │ ├── diskette │ ├── display │ ├── doc │ ├── fax │ ├── file_server │ ├── filing.cabinet │ ├── fixed.disk │ ├── form │ ├── forward │ ├── ftp │ ├── glossary │ ├── gzip │ ├── help │ ├── help-icon │ ├── home │ ├── image │ ├── image2 │ ├── image3 │ ├── index │ ├── index2 │ ├── info │ ├── keyboard │ ├── mail │ ├── mail.in │ ├── mail.out │ ├── map │ ├── menu │ ├── mouse │ ├── movie │ ├── network │ ├── next │ ├── notebook │ ├── postscript │ ├── printer │ ├── rainbow │ ├── scheduler │ ├── sound │ ├── sound2 │ ├── stop │ ├── symlink │ ├── tar │ ├── telephone │ ├── telnet │ ├── text │ ├── text2 │ ├── tn3270 │ ├── transfer │ ├── trash │ ├── unknown │ ├── uuencoded │ └── workstation ├── x ├── yieldsign └── zip ├── include └── mgr │ ├── bitblit.h │ ├── font.h │ ├── hfont.h │ ├── mgr.h │ ├── restart.h │ ├── share.h │ └── window.h └── src ├── CMakeLists.txt ├── Makefile ├── clients ├── CMakeLists.txt ├── Ft2fnt │ ├── Makefile │ ├── ReadMe │ └── ft2fnt.c ├── MDmgrload │ ├── Makefile │ ├── README │ ├── loadavgd.c │ ├── mgrload.1 │ ├── mgrload.c │ ├── mgrload.sr.hdr │ ├── term.h │ └── window.h ├── Makefile ├── Mtx │ ├── Makefile │ ├── README │ ├── color.c │ ├── color.h │ ├── command.c │ ├── debug.c │ ├── do_func.c │ ├── do_sh.c │ ├── getshell.c │ ├── message.c │ ├── mgr.c │ ├── mtx.1 │ ├── mtx.c │ ├── mtx.h │ ├── mtx_connect.c │ ├── mtx_hosts.c │ ├── mtx_net.c │ ├── mtx_subs.c │ ├── scripts │ │ ├── Grep │ │ ├── README │ │ ├── grep.mtx │ │ ├── split.mtx │ │ └── tap.mtx │ └── term.h ├── README ├── Rmgr │ ├── Makefile │ ├── README │ ├── rmgr.1 │ ├── rmgr.c │ └── rmgr.h ├── Sun │ ├── .depend │ ├── Makefile │ ├── ether.1 │ ├── ether.c │ ├── ether2.c │ ├── invert_color.1 │ ├── invert_color.c │ ├── overlay.1 │ ├── overlay.c │ ├── overlayd.c │ ├── set_colormap.1 │ ├── set_colormap.c │ ├── setcolormap2.c │ ├── stat.1 │ ├── stat.c │ └── stat2.c ├── bitblit │ ├── Makefile │ └── simple │ │ ├── .depend │ │ ├── Makefile │ │ ├── colormap.c │ │ ├── fade.1 │ │ ├── fade.c │ │ ├── mgrlock.1 │ │ ├── mgrlock.c │ │ ├── mgrmag.1 │ │ ├── mgrmag.c │ │ ├── screendump.1 │ │ ├── screendump.c │ │ ├── snap.1 │ │ └── snap.c ├── examples │ ├── .depend │ ├── Makefile │ ├── art_data.c │ ├── bounce.1 │ ├── bounce.c │ ├── cycle.1 │ ├── cycle.c │ ├── grav.1 │ ├── grav.c │ ├── grid.1 │ ├── grid.c │ ├── hilbert.1 │ ├── hilbert.c │ ├── mgreyes.c │ ├── oclose.1 │ ├── oclose.c │ ├── stringart.1 │ ├── stringart.c │ ├── walk.1 │ └── walk.c ├── icon │ ├── .depend │ ├── Makefile │ ├── zoom.1 │ └── zoom.c ├── misc │ ├── .depend │ ├── Makefile │ ├── ak_eyes.c │ ├── ascfnt.c │ ├── dmgr.1 │ ├── dmgr.c │ ├── epsfilter.c │ ├── epsfilter.rme │ ├── fntasc.c │ ├── fontinfo.c │ ├── hp_raster.c │ ├── lasergrafix.c │ ├── rotate.1 │ ├── rotate.c │ ├── set_console.1 │ ├── set_console.c │ ├── show.1 │ ├── show.c │ ├── tjfilter.1 │ └── tjfilter.c ├── movie │ ├── .depend │ ├── Makefile │ ├── get_maps.1 │ ├── get_maps.c │ ├── getshort.c │ ├── getshort.h │ ├── play_data.1 │ ├── play_data.c │ ├── putshort.c │ ├── putshort.h │ ├── shrink.1 │ ├── shrink.c │ ├── shrink_map.1 │ ├── shrink_map.c │ ├── time_it.1 │ ├── time_it.sh │ ├── to_ascii.1 │ ├── to_ascii.c │ ├── to_binary.1 │ └── to_binary.c ├── pbm │ ├── Makefile │ ├── getopt.h │ ├── pbmstream.c │ ├── pbmtoprt.c │ └── pnmstream.c ├── portable │ ├── Makefile │ ├── Msg │ │ ├── .depend │ │ ├── Makefile │ │ ├── Makefile.old │ │ ├── README │ │ ├── alias │ │ ├── client.c │ │ ├── do.c │ │ ├── do.h │ │ ├── do_file │ │ ├── do_ls │ │ ├── do_more │ │ ├── do_vi │ │ ├── menus.c │ │ ├── send.c │ │ └── start │ ├── Nethack.sh │ ├── README │ ├── Vcr │ │ ├── .depend │ │ ├── Makefile │ │ ├── vcr.1 │ │ └── vcr.c │ ├── gropbm │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── bit.c │ │ ├── bit.h │ │ ├── fontview.c │ │ ├── gropbm.1 │ │ ├── gropbm.c │ │ ├── hfont.c │ │ ├── hfont.h │ │ ├── mkdevpbm │ │ ├── table.c │ │ └── widths.c │ ├── hpmgr │ │ ├── .depend │ │ ├── Makefile │ │ ├── getpty.c │ │ ├── hpmgr.1 │ │ └── hpmgr.c │ ├── ico │ │ ├── .depend │ │ ├── Makefile │ │ ├── allobjs.h │ │ ├── ico.1 │ │ ├── ico.c │ │ ├── objcube.h │ │ ├── objico.h │ │ ├── objocta.h │ │ ├── objplane.h │ │ ├── objpyr.h │ │ └── polyinfo.h │ ├── ify │ │ ├── .depend │ │ ├── Makefile │ │ ├── ify.1 │ │ ├── ify.c │ │ ├── setname.1 │ │ └── setname.c │ ├── mgrload │ │ ├── .depend │ │ ├── Makefile │ │ ├── getload.c │ │ ├── getload.h │ │ ├── linux.c │ │ ├── mgrload.1 │ │ ├── mgrload.c │ │ └── sunos.c │ ├── mgrplot │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── mgrplot.1 │ │ ├── mgrplot.c │ │ ├── plot.ex │ │ ├── plot.ex2 │ │ └── subs.c │ ├── mgrsketch │ │ ├── .depend │ │ ├── Makefile │ │ ├── mgrsketch.1 │ │ └── mgrsketch.c │ ├── mphoon │ │ ├── .depend │ │ ├── README.xphoon │ │ ├── atan2.c │ │ ├── bigmoon.c │ │ ├── bigmoon.xbm │ │ ├── colorport.c │ │ ├── dtime.c │ │ ├── freebsd.c │ │ ├── i386.c │ │ ├── linux.c │ │ ├── makefile │ │ ├── makefile.osk │ │ ├── moon.c │ │ ├── moon.xbm │ │ ├── mphoon.c │ │ ├── mphoon.man │ │ ├── phase.c │ │ ├── smallmoon.c │ │ ├── smallmoon.xbm │ │ ├── sunmono.c │ │ ├── sunos.c │ │ └── tws.h │ ├── pgs │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── gs.patch.241 │ │ ├── gs.patch.2614mono │ │ ├── pgs.1 │ │ └── pgs.c │ ├── sh │ │ ├── Makefile │ │ ├── bury │ │ ├── bury.1 │ │ ├── c_menu │ │ ├── c_menu.1 │ │ ├── color │ │ ├── color.1 │ │ ├── cursor │ │ ├── cursor.1 │ │ ├── font │ │ ├── font.1 │ │ ├── loadfont │ │ ├── loadfont.1 │ │ ├── menu │ │ ├── menu.1 │ │ ├── resetwin │ │ ├── resetwin.1 │ │ ├── shape │ │ ├── shape.1 │ │ ├── showfont │ │ ├── square │ │ └── square.1 │ ├── simple │ │ ├── .depend │ │ ├── Makefile │ │ ├── bdftomgr.c │ │ ├── browse.1 │ │ ├── browse.c │ │ ├── chess.c │ │ ├── clock.1 │ │ ├── clock.c │ │ ├── clock2.1 │ │ ├── clock2.c │ │ ├── clock3.c │ │ ├── close.1 │ │ ├── close.c │ │ ├── cut.1 │ │ ├── cut.c │ │ ├── iconmail.1 │ │ ├── iconmail.c │ │ ├── iconmsgs.1 │ │ ├── iconmsgs.c │ │ ├── ismgrterm.c │ │ ├── maze.1 │ │ ├── maze.c │ │ ├── mclock.1 │ │ ├── mclock.c │ │ ├── mgrbiff.1 │ │ ├── mgrbiff.c │ │ ├── mgrfont2vga.c │ │ ├── mgrmail.1 │ │ ├── mgrmail.c │ │ ├── mgrmode.1 │ │ ├── mgrmode.c │ │ ├── mgrmsgs.1 │ │ ├── mgrmsgs.c │ │ ├── mgrsclock.1 │ │ ├── mgrsclock.c │ │ ├── mgrshowfont.1 │ │ ├── mgrshowfont.c │ │ ├── mgrview.1 │ │ ├── mgrview.c │ │ ├── mless.c │ │ ├── mnew.c │ │ ├── mvi.c │ │ ├── nonmgrterm.c │ │ ├── omgrmail.1 │ │ ├── omgrmail.c │ │ ├── pbmrawtomgr.1 │ │ ├── pbmrawtomgr.c │ │ ├── pgmrawtomgr.c │ │ ├── pilot.1 │ │ ├── pilot.c │ │ ├── ppmrawtomgr.c │ │ ├── resetwin.c │ │ ├── set_termcap.1 │ │ ├── set_termcap.c │ │ ├── squeeze.1 │ │ ├── squeeze.c │ │ ├── startup.1 │ │ ├── startup.c │ │ ├── unsqueeze.1 │ │ ├── unsqueeze.c │ │ ├── vgafont2mgr.c │ │ ├── window_print.1 │ │ ├── window_print.c │ │ └── xbm2mgricon.c │ ├── texmgr │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── fontdesc │ │ ├── libtex │ │ │ ├── Makefile │ │ │ ├── conv.c │ │ │ ├── conv.h │ │ │ ├── convstruct.h │ │ │ ├── dvi.h │ │ │ ├── dvi_draw.c │ │ │ ├── dviclass.c │ │ │ ├── dviclass.h │ │ │ ├── dvicodes.h │ │ │ ├── dvistruct.h │ │ │ ├── dvistuff.c │ │ │ ├── dvistuff.h │ │ │ ├── error.c │ │ │ ├── findpost.c │ │ │ ├── fio.c │ │ │ ├── fio.h │ │ │ ├── font.c │ │ │ ├── font.h │ │ │ ├── font_subr.c │ │ │ ├── gfclass.c │ │ │ ├── gfclass.h │ │ │ ├── gfcodes.h │ │ │ ├── gffont.c │ │ │ ├── gripes.c │ │ │ ├── imPcodes.h │ │ │ ├── imagen.h │ │ │ ├── magfactor.c │ │ │ ├── num.h │ │ │ ├── pkfont.c │ │ │ ├── postamble.h │ │ │ ├── proto.h │ │ │ ├── pxlfont.c │ │ │ ├── rotate.c │ │ │ ├── scaletfm.c │ │ │ ├── scanpost.c │ │ │ ├── search.c │ │ │ ├── search.h │ │ │ ├── seek.c │ │ │ ├── split.c │ │ │ ├── strsave.c │ │ │ ├── tfm.c │ │ │ ├── tfm.h │ │ │ ├── tfmfont.c │ │ │ └── types.h │ │ ├── misc.c │ │ ├── texmgr.1 │ │ └── texmgr.c │ ├── text2font │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── font2text.1 │ │ ├── font2text.c │ │ ├── text2font.1 │ │ └── text2font.c │ └── xbd │ │ ├── .depend │ │ ├── Imakefile │ │ ├── Makefile.mgr │ │ ├── README │ │ ├── README.1.2 │ │ ├── README.MGR │ │ ├── bitmap.orig │ │ ├── blob.bits │ │ ├── blob2.bits │ │ ├── boulder.bits │ │ ├── diamond.bits │ │ ├── diamond2.bits │ │ ├── eater.bits │ │ ├── eater2.bits │ │ ├── exit2.bits │ │ ├── exit3.bits │ │ ├── explosion.bits │ │ ├── grass.bits │ │ ├── grey.bits │ │ ├── icon.bits │ │ ├── lmonster.bits │ │ ├── lmonster2.bits │ │ ├── nucbal.bits │ │ ├── player.bits │ │ ├── player.old │ │ ├── player2.bits │ │ ├── player2.old │ │ ├── rmonster.bits │ │ ├── rmonster2.bits │ │ ├── space.bits │ │ ├── steel.bits │ │ ├── tinkle1.bits │ │ ├── tinkle2.bits │ │ ├── wall.bits │ │ └── wall2.bits │ │ ├── default │ │ ├── field.c │ │ ├── patchlevel.h │ │ ├── scores.c │ │ ├── shared.c │ │ ├── xbd.c │ │ ├── xbd.h │ │ ├── xbd.man │ │ ├── xbde.c │ │ ├── xbdlev001 │ │ ├── xbdlev002 │ │ ├── xbdlev003 │ │ ├── xbdlev004 │ │ ├── xbdlev005 │ │ ├── xbdlev006 │ │ ├── xbdlev007 │ │ ├── xbdlev008 │ │ ├── xbdlev009 │ │ ├── xbdlev010 │ │ ├── xbdlev011 │ │ ├── xbdlev012 │ │ ├── xbdlev013 │ │ ├── xbdlev014 │ │ ├── xbdlev015 │ │ ├── xbdlev016 │ │ ├── xbdlev017 │ │ ├── xbdlev018 │ │ ├── xbdlev019 │ │ ├── xbdlev020 │ │ ├── xbdlev021 │ │ ├── xbdlev022 │ │ ├── xbdlev023 │ │ ├── xbdlev024 │ │ ├── xbdlev025 │ │ ├── xbdlev026 │ │ ├── xbdlev027 │ │ ├── xbdlev028 │ │ ├── xbdlev029 │ │ ├── xbdlev030 │ │ ├── xbdlev031 │ │ ├── xbdlev032 │ │ ├── xbdlev033 │ │ ├── xbdlev034 │ │ ├── xbdlev035 │ │ ├── xbdlev036 │ │ ├── xbdlev037 │ │ ├── xbdlev038 │ │ └── xbmgen └── tests │ ├── .depend │ ├── Makefile │ ├── event.c │ ├── half.c │ ├── hfont.c │ ├── many.c │ ├── spot.1 │ ├── spot.c │ ├── test_menu.c │ ├── test_rop.c │ └── trans.c ├── libbitblit ├── CMakeLists.txt ├── Makefile ├── README ├── bitblit.3 ├── bitmap │ ├── .depend │ ├── Makefile │ ├── bit_alloc.c │ ├── bit_create.c │ ├── bit_open.c │ ├── bitmap.5 │ └── bitmaphead.c ├── movie │ ├── .depend │ ├── Makefile │ ├── movie.5 │ ├── share.c │ └── timestamp.c ├── relics-of-an-ancient-past │ ├── 3b1 │ │ └── blit.c │ ├── Movieport │ │ ├── Makefile │ │ ├── README │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.tc │ │ ├── line.c │ │ └── pixel.c │ ├── blit │ │ ├── Makefile │ │ ├── README │ │ ├── asm.h │ │ ├── bit_on.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.tc │ │ ├── hash.c │ │ ├── hash.h │ │ ├── line.tc │ │ ├── m4.h │ │ ├── pixel.tc │ │ └── sym.c │ ├── colorport │ │ ├── .depend │ │ ├── 320x200x256.h │ │ ├── Makefile │ │ ├── README.VGA │ │ ├── README.port │ │ ├── Semantics │ │ ├── bit_blit.c │ │ ├── bit_bytescr.c │ │ ├── bit_destroy.c │ │ ├── bit_line.c │ │ ├── bit_on.c │ │ ├── bit_point.c │ │ ├── bit_size.c │ │ ├── colors.c │ │ ├── colors.h │ │ ├── mem_rop.tc │ │ ├── s3 │ │ │ ├── 1024x768x256.h │ │ │ ├── 640x480x256.h │ │ │ └── 800x600x256.h │ │ ├── sun.c │ │ ├── sun.h │ │ ├── sun_cmap.c │ │ ├── test_exp.c │ │ ├── test_randops.c │ │ ├── test_rop.c │ │ ├── test_shrink.c │ │ ├── tseng4k │ │ │ ├── 1024x768x256.h │ │ │ ├── 640x480x256.h │ │ │ └── 800x600x256.h │ │ ├── tvga │ │ │ ├── 1024x768x2.h │ │ │ ├── 768x1024x2.h │ │ │ └── 800x600x2.h │ │ ├── vga.c │ │ ├── vga.h │ │ └── vga_cmap.c │ ├── dec3100 │ │ ├── Makefile │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.tc │ │ ├── line.c │ │ └── pixel.c │ ├── linux │ │ ├── .depend │ │ ├── 1024x768.h │ │ ├── 640x480x2.h │ │ ├── 768x1024.h │ │ ├── 800x600.h │ │ ├── 800x600x2.h │ │ ├── 800x600x2S3.h │ │ ├── ChangeLog.freebsd │ │ ├── Makefile │ │ ├── README.EGA │ │ ├── README.VGA │ │ ├── asm.h │ │ ├── bit_blit.c │ │ ├── bit_bytescr.c │ │ ├── bit_destroy.c │ │ ├── bit_line.c │ │ ├── bit_on.c │ │ ├── bit_point.c │ │ ├── bit_size.c │ │ ├── do.h │ │ ├── do_2blit.S │ │ ├── do_2mask.S │ │ ├── do_blit.S │ │ ├── do_mask.S │ │ ├── ega.c │ │ ├── hgc.c │ │ ├── hgc.h │ │ ├── misc.S │ │ ├── vga.c │ │ ├── vga.h │ │ └── vga_cmap.c │ ├── newport1 │ │ ├── Makefile │ │ ├── README │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.tc │ │ ├── line.c │ │ ├── pixel.c │ │ ├── rops.c │ │ ├── share.c │ │ ├── share.h │ │ ├── test_rop.c │ │ └── timestamp.c │ ├── newport8 │ │ ├── Makefile │ │ ├── README │ │ ├── Semantics │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.tc │ │ ├── generic.c │ │ ├── line.c │ │ ├── pixel.c │ │ └── sun.c │ ├── oblit │ │ ├── Makefile │ │ ├── README │ │ ├── bit_on.c │ │ ├── bitmap.c │ │ ├── bitmap.h │ │ ├── blit.c │ │ ├── line.c │ │ └── pixel.c │ ├── pixrect │ │ ├── .depend │ │ ├── Bitmap.h │ │ ├── Makefile │ │ ├── Makefile.PR │ │ ├── bit_alloc.c │ │ ├── bit_blit.c │ │ ├── bit_bytescr.c │ │ ├── bit_create.c │ │ ├── bit_destroy.c │ │ ├── bit_line.c │ │ ├── bit_on.c │ │ ├── bit_open.c │ │ ├── bit_point.c │ │ ├── bit_size.c │ │ ├── bitmaphead.c │ │ ├── mem_rop.tc │ │ ├── sun-generic.h │ │ ├── sun.c │ │ ├── sun.h │ │ ├── sun_cmap.c │ │ └── sundep.c │ └── sunmono │ │ ├── .depend │ │ ├── Makefile │ │ ├── README │ │ ├── bit_blit.tc │ │ ├── bit_bytescr.c │ │ ├── bit_destroy.c │ │ ├── bit_line.c │ │ ├── bit_on.c │ │ ├── bit_point.c │ │ ├── bit_size.c │ │ ├── sun.c │ │ ├── sun.h │ │ ├── test_randops.c │ │ └── test_rop.c ├── sdl-backend │ ├── bit_blit.c │ ├── bit_destroy.c │ ├── bit_initscreen.c │ ├── bit_line.c │ ├── bit_on.c │ ├── bit_point.c │ ├── bit_size.c │ ├── mem_rop.c │ ├── palette.c │ ├── screen.c │ └── screen.h ├── seqbitmap │ ├── .depend │ ├── Makefile │ ├── README │ ├── bit_load.c │ ├── bit_save.c │ ├── bitmapread.c │ └── bitmapwrite.c ├── stub-backend │ ├── Makefile │ ├── README │ ├── bit_blit.c │ ├── bit_destroy.c │ ├── bit_initscreen.c │ ├── bit_line.c │ ├── bit_on.c │ ├── bit_point.c │ ├── bit_size.c │ ├── mem_rop.c │ ├── palette.c │ ├── screen.c │ └── screen.h └── test │ ├── .depend │ ├── Makefile │ ├── lines.c │ ├── monorop.c │ └── rops.c ├── libmgr ├── .depend ├── CMakeLists.txt ├── Makefile ├── README ├── ckmgrterm.c ├── hfont.c ├── is_mgr_term.c ├── m_bitc_send.c ├── m_bitfile.c ├── m_getborder.3 ├── m_getborder.c ├── m_getdepth.c ├── m_getevent.c ├── m_getfontid.c ├── m_getfontn.c ├── m_getfonts.c ├── m_gethost.3 ├── m_gethost.c ├── m_getpalette.c ├── m_getscreen.c ├── m_getwindowp.c ├── m_getwindows.c ├── m_localsrv.c ├── m_parse.c ├── m_setup.c ├── m_tty.c ├── oldinfo.c └── term.c ├── mgr ├── .depend ├── CMakeLists.txt ├── Makefile ├── README ├── Write.c ├── Write.h ├── border.c ├── border.h ├── clip.h ├── colormap.c ├── colormap.h ├── copyright.c ├── copyright.h ├── cut.c ├── cut.h ├── data.c ├── debug_flags.c ├── defs.h ├── destroy.c ├── destroy.h ├── do_buckey.c ├── do_buckey.h ├── do_button.c ├── do_button.h ├── do_event.c ├── do_event.h ├── do_menu.c ├── do_menu.h ├── down_load.c ├── down_load.h ├── erase_win.c ├── erase_win.h ├── event.h ├── font.5 ├── font_subs.c ├── font_subs.h ├── get_font.c ├── get_font.h ├── get_info.c ├── get_info.h ├── get_menus.c ├── get_menus.h ├── get_rect.c ├── get_rect.h ├── get_text.c ├── get_text.h ├── getshell.c ├── getshell.h ├── graph_subs.c ├── graph_subs.h ├── intersect.c ├── intersect.h ├── kbd.c ├── kbd.h ├── menu.h ├── mgr.1 ├── mgr.c ├── mgr.h ├── mgrlogin.c ├── mouse.c ├── mouse.h ├── mouse_get.c ├── mouse_get.h ├── move.c ├── move.h ├── move_box.c ├── move_box.h ├── new_window.c ├── new_window.h ├── popen.c ├── print.c ├── print.h ├── proto.h ├── put_window.c ├── put_window.h ├── scroll.c ├── scroll.h ├── set_mode.c ├── set_mode.h ├── shape.c ├── shape.h ├── sigdata.c ├── sigdata.h ├── startup.c ├── startup.h ├── subs.c ├── subs.h ├── update.c ├── update.h ├── utmp.c ├── utmp.h ├── win_make.c ├── win_make.h ├── win_stack.c ├── win_stack.h ├── win_subs.c ├── win_subs.h ├── write_ok.c └── write_ok.h └── tools ├── CMakeLists.txt ├── Makefile ├── bitmaptoc.1 ├── bitmaptoc.c ├── fonttoc.1 └── fonttoc.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Configfile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Configfile.m4 -------------------------------------------------------------------------------- /Configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Configure -------------------------------------------------------------------------------- /MGR-HOWTO.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/MGR-HOWTO.sgml -------------------------------------------------------------------------------- /MGR-HOWTO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/MGR-HOWTO.txt -------------------------------------------------------------------------------- /MGR.lsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/MGR.lsm -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/README.rst -------------------------------------------------------------------------------- /SUPPORT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/SUPPORT -------------------------------------------------------------------------------- /Versions/ChangeLog-4.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.10 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.11 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.12 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.4 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.5 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.6 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.8 -------------------------------------------------------------------------------- /Versions/ChangeLog-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ChangeLog-4.9 -------------------------------------------------------------------------------- /Versions/Configfile.hgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.hgc -------------------------------------------------------------------------------- /Versions/Configfile.lx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.lx -------------------------------------------------------------------------------- /Versions/Configfile.lxco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.lxco -------------------------------------------------------------------------------- /Versions/Configfile.lxcos3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.lxcos3 -------------------------------------------------------------------------------- /Versions/Configfile.lxcots: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.lxcots -------------------------------------------------------------------------------- /Versions/Configfile.lxs3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.lxs3 -------------------------------------------------------------------------------- /Versions/Configfile.sun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.sun -------------------------------------------------------------------------------- /Versions/Configfile.suncg3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.suncg3 -------------------------------------------------------------------------------- /Versions/Configfile.sunmono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/Configfile.sunmono -------------------------------------------------------------------------------- /Versions/RCSversions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/RCSversions -------------------------------------------------------------------------------- /Versions/ReleaseNotes59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ReleaseNotes59 -------------------------------------------------------------------------------- /Versions/ReleaseNotes62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ReleaseNotes62 -------------------------------------------------------------------------------- /Versions/ReleaseNotes63: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ReleaseNotes63 -------------------------------------------------------------------------------- /Versions/ReleaseNotes68: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ReleaseNotes68 -------------------------------------------------------------------------------- /Versions/ReleaseNotes69: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/ReleaseNotes69 -------------------------------------------------------------------------------- /Versions/rcslog.4.12.1.1.blit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/rcslog.4.12.1.1.blit -------------------------------------------------------------------------------- /Versions/rcslog.4.12.1.1.mgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/rcslog.4.12.1.1.mgr -------------------------------------------------------------------------------- /Versions/sunmono.rcslog.4.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/Versions/sunmono.rcslog.4.12 -------------------------------------------------------------------------------- /cmake/PackagingConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/cmake/PackagingConfig.cmake -------------------------------------------------------------------------------- /cmake/modules/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/cmake/modules/FindSDL2.cmake -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | ADD_SUBDIRECTORY(croff) 2 | -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/README -------------------------------------------------------------------------------- /doc/abstract.ms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/abstract.ms -------------------------------------------------------------------------------- /doc/croff/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/CMakeLists.txt -------------------------------------------------------------------------------- /doc/croff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/Makefile -------------------------------------------------------------------------------- /doc/croff/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/README -------------------------------------------------------------------------------- /doc/croff/croff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/croff.1 -------------------------------------------------------------------------------- /doc/croff/croff.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/croff.l -------------------------------------------------------------------------------- /doc/croff/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/hash.c -------------------------------------------------------------------------------- /doc/croff/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/hash.h -------------------------------------------------------------------------------- /doc/croff/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/keywords -------------------------------------------------------------------------------- /doc/croff/mktable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/croff/mktable.c -------------------------------------------------------------------------------- /doc/doc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.1 -------------------------------------------------------------------------------- /doc/doc.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.2 -------------------------------------------------------------------------------- /doc/doc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.3 -------------------------------------------------------------------------------- /doc/doc.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.4 -------------------------------------------------------------------------------- /doc/doc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.5 -------------------------------------------------------------------------------- /doc/doc.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.6 -------------------------------------------------------------------------------- /doc/doc.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/doc.9 -------------------------------------------------------------------------------- /doc/groffit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/groffit -------------------------------------------------------------------------------- /doc/index.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/index.awk -------------------------------------------------------------------------------- /doc/macros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/macros -------------------------------------------------------------------------------- /doc/manual.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/doc/manual.out -------------------------------------------------------------------------------- /doc/p10: -------------------------------------------------------------------------------- 1 | .pl 10i 2 | -------------------------------------------------------------------------------- /font/.mgrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/.mgrc -------------------------------------------------------------------------------- /font/Copyleft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Copyleft.txt -------------------------------------------------------------------------------- /font/Cursorname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Cursorname.txt -------------------------------------------------------------------------------- /font/FILELIST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/FILELIST.txt -------------------------------------------------------------------------------- /font/FONTDIR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/FONTDIR.txt -------------------------------------------------------------------------------- /font/Fontorig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Fontorig.txt -------------------------------------------------------------------------------- /font/GRgallant12x21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/GRgallant12x21 -------------------------------------------------------------------------------- /font/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/History.txt -------------------------------------------------------------------------------- /font/Looking4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Looking4.txt -------------------------------------------------------------------------------- /font/Moreorigin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Moreorigin.txt -------------------------------------------------------------------------------- /font/Xfixed-13x25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/Xfixed-13x25 -------------------------------------------------------------------------------- /font/apeaus-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/apeaus-8x14 -------------------------------------------------------------------------------- /font/apeaus-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/apeaus-8x16 -------------------------------------------------------------------------------- /font/apeaus-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/apeaus-8x8 -------------------------------------------------------------------------------- /font/backward-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/backward-8x14 -------------------------------------------------------------------------------- /font/betagreek-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/betagreek-8x16 -------------------------------------------------------------------------------- /font/bhexall-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/bhexall-8x14 -------------------------------------------------------------------------------- /font/block-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/block-8x14 -------------------------------------------------------------------------------- /font/colossus12x20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/colossus12x20 -------------------------------------------------------------------------------- /font/cour28x41: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour28x41 -------------------------------------------------------------------------------- /font/cour32x44: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour32x44 -------------------------------------------------------------------------------- /font/cour41x59: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour41x59 -------------------------------------------------------------------------------- /font/cour48x66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour48x66 -------------------------------------------------------------------------------- /font/cour58x81: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour58x81 -------------------------------------------------------------------------------- /font/cour65x89: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour65x89 -------------------------------------------------------------------------------- /font/cour75x103: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cour75x103 -------------------------------------------------------------------------------- /font/courier-10x17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-10x17 -------------------------------------------------------------------------------- /font/courier-12x20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-12x20 -------------------------------------------------------------------------------- /font/courier-16x25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-16x25 -------------------------------------------------------------------------------- /font/courier-7x10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-7x10 -------------------------------------------------------------------------------- /font/courier-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-8x14 -------------------------------------------------------------------------------- /font/courier-9x12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-9x12 -------------------------------------------------------------------------------- /font/courier-9x15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/courier-9x15 -------------------------------------------------------------------------------- /font/cp437-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp437-8x16 -------------------------------------------------------------------------------- /font/cp850-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp850-8x14 -------------------------------------------------------------------------------- /font/cp850-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp850-8x16 -------------------------------------------------------------------------------- /font/cp850-8x19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp850-8x19 -------------------------------------------------------------------------------- /font/cp850-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp850-8x8 -------------------------------------------------------------------------------- /font/cp850thn-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp850thn-8x16 -------------------------------------------------------------------------------- /font/cp852-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp852-8x14 -------------------------------------------------------------------------------- /font/cp852-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp852-8x16 -------------------------------------------------------------------------------- /font/cp852-8x19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp852-8x19 -------------------------------------------------------------------------------- /font/cp852-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp852-8x8 -------------------------------------------------------------------------------- /font/cp852thn-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/cp852thn-8x16 -------------------------------------------------------------------------------- /font/default-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/default-8x16 -------------------------------------------------------------------------------- /font/dot1x1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/dot1x1 -------------------------------------------------------------------------------- /font/dsvgaapl-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/dsvgaapl-8x14 -------------------------------------------------------------------------------- /font/gacha-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/gacha-8x16 -------------------------------------------------------------------------------- /font/gachabold-9x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/gachabold-9x16 -------------------------------------------------------------------------------- /font/gal13x20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/gal13x20 -------------------------------------------------------------------------------- /font/hack4th-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/hack4th-8x16 -------------------------------------------------------------------------------- /font/handugly-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/handugly-8x16 -------------------------------------------------------------------------------- /font/handwrit-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/handwrit-8x14 -------------------------------------------------------------------------------- /font/handwrit-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/handwrit-8x16 -------------------------------------------------------------------------------- /font/heb-bold-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/heb-bold-8x16 -------------------------------------------------------------------------------- /font/hebclrgf-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/hebclrgf-8x16 -------------------------------------------------------------------------------- /font/hollow-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/hollow-8x14 -------------------------------------------------------------------------------- /font/hrkgreek-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/hrkgreek-8x14 -------------------------------------------------------------------------------- /font/icons-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/icons-8x14 -------------------------------------------------------------------------------- /font/inverted-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/inverted-8x14 -------------------------------------------------------------------------------- /font/is8859-1-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-1-8x14 -------------------------------------------------------------------------------- /font/is8859-1-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-1-8x16 -------------------------------------------------------------------------------- /font/is8859-1-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-1-8x8 -------------------------------------------------------------------------------- /font/is8859-10-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-10-8x14 -------------------------------------------------------------------------------- /font/is8859-10-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-10-8x16 -------------------------------------------------------------------------------- /font/is8859-10-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-10-8x8 -------------------------------------------------------------------------------- /font/is8859-2-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-2-8x14 -------------------------------------------------------------------------------- /font/is8859-2-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-2-8x16 -------------------------------------------------------------------------------- /font/is8859-2-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-2-8x8 -------------------------------------------------------------------------------- /font/is8859-3-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-3-8x14 -------------------------------------------------------------------------------- /font/is8859-3-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-3-8x16 -------------------------------------------------------------------------------- /font/is8859-3-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-3-8x8 -------------------------------------------------------------------------------- /font/is8859-4-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-4-8x14 -------------------------------------------------------------------------------- /font/is8859-4-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-4-8x16 -------------------------------------------------------------------------------- /font/is8859-4-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-4-8x8 -------------------------------------------------------------------------------- /font/is8859-5-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-5-8x14 -------------------------------------------------------------------------------- /font/is8859-5-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-5-8x16 -------------------------------------------------------------------------------- /font/is8859-5-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-5-8x8 -------------------------------------------------------------------------------- /font/is8859-6-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-6-8x14 -------------------------------------------------------------------------------- /font/is8859-6-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-6-8x16 -------------------------------------------------------------------------------- /font/is8859-6-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-6-8x8 -------------------------------------------------------------------------------- /font/is8859-7-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-7-8x14 -------------------------------------------------------------------------------- /font/is8859-7-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-7-8x16 -------------------------------------------------------------------------------- /font/is8859-7-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-7-8x8 -------------------------------------------------------------------------------- /font/is8859-8-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-8-8x14 -------------------------------------------------------------------------------- /font/is8859-8-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-8-8x16 -------------------------------------------------------------------------------- /font/is8859-8-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-8-8x8 -------------------------------------------------------------------------------- /font/is8859-9-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-9-8x14 -------------------------------------------------------------------------------- /font/is8859-9-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-9-8x16 -------------------------------------------------------------------------------- /font/is8859-9-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/is8859-9-8x8 -------------------------------------------------------------------------------- /font/italics-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/italics-8x14 -------------------------------------------------------------------------------- /font/lucidQBS-10x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/lucidQBS-10x16 -------------------------------------------------------------------------------- /font/lucidQBS-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/lucidQBS-8x14 -------------------------------------------------------------------------------- /font/lucidQRS-10x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/lucidQRS-10x16 -------------------------------------------------------------------------------- /font/lucidQRS-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/lucidQRS-8x14 -------------------------------------------------------------------------------- /font/medieval-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/medieval-8x14 -------------------------------------------------------------------------------- /font/nil2-2x3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/nil2-2x3 -------------------------------------------------------------------------------- /font/octal-7x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/octal-7x14 -------------------------------------------------------------------------------- /font/old-engl-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/old-engl-8x14 -------------------------------------------------------------------------------- /font/oldeng22x30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/oldeng22x30 -------------------------------------------------------------------------------- /font/reverse-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/reverse-8x14 -------------------------------------------------------------------------------- /font/rimrock-8x10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/rimrock-8x10 -------------------------------------------------------------------------------- /font/rmrkbold-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/rmrkbold-8x14 -------------------------------------------------------------------------------- /font/sail6x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/sail6x8 -------------------------------------------------------------------------------- /font/sail7x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/sail7x11 -------------------------------------------------------------------------------- /font/ser7x12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/ser7x12 -------------------------------------------------------------------------------- /font/ser8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/ser8x16 -------------------------------------------------------------------------------- /font/shadow38x40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/shadow38x40 -------------------------------------------------------------------------------- /font/sideways-8x6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/sideways-8x6 -------------------------------------------------------------------------------- /font/subsup-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/subsup-8x16 -------------------------------------------------------------------------------- /font/symbol-10x11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-10x11 -------------------------------------------------------------------------------- /font/symbol-12x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-12x14 -------------------------------------------------------------------------------- /font/symbol-15x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-15x16 -------------------------------------------------------------------------------- /font/symbol-17x20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-17x20 -------------------------------------------------------------------------------- /font/symbol-21x25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-21x25 -------------------------------------------------------------------------------- /font/symbol-27x32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/symbol-27x32 -------------------------------------------------------------------------------- /font/tech-9x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/tech-9x16 -------------------------------------------------------------------------------- /font/techB-9x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/techB-9x16 -------------------------------------------------------------------------------- /font/tiny4x7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/tiny4x7 -------------------------------------------------------------------------------- /font/vga-rom-8x14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/vga-rom-8x14 -------------------------------------------------------------------------------- /font/vga-rom-8x16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/vga-rom-8x16 -------------------------------------------------------------------------------- /font/vga-rom-8x8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/vga-rom-8x8 -------------------------------------------------------------------------------- /font/wgreek-22x28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/wgreek-22x28 -------------------------------------------------------------------------------- /font/wgreek-9x17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/font/wgreek-9x17 -------------------------------------------------------------------------------- /hfont/cyril.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/cyril.c -------------------------------------------------------------------------------- /hfont/greek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/greek.c -------------------------------------------------------------------------------- /hfont/greek.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/greek.s -------------------------------------------------------------------------------- /hfont/hindi.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/hindi.d -------------------------------------------------------------------------------- /hfont/italic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/italic.d -------------------------------------------------------------------------------- /hfont/italic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/italic.t -------------------------------------------------------------------------------- /hfont/roman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/roman.c -------------------------------------------------------------------------------- /hfont/roman.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/roman.d -------------------------------------------------------------------------------- /hfont/roman.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/roman.s -------------------------------------------------------------------------------- /hfont/roman.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/roman.t -------------------------------------------------------------------------------- /hfont/script.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/script.s -------------------------------------------------------------------------------- /hfont/special.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/hfont/special.s -------------------------------------------------------------------------------- /icon/apple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/apple -------------------------------------------------------------------------------- /icon/arrdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/arrdown -------------------------------------------------------------------------------- /icon/arrleft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/arrleft -------------------------------------------------------------------------------- /icon/arrne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/arrne -------------------------------------------------------------------------------- /icon/arrright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/arrright -------------------------------------------------------------------------------- /icon/arrup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/arrup -------------------------------------------------------------------------------- /icon/bandaid_bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/bandaid_bad -------------------------------------------------------------------------------- /icon/bignot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/bignot -------------------------------------------------------------------------------- /icon/biplane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/biplane -------------------------------------------------------------------------------- /icon/blank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/blank -------------------------------------------------------------------------------- /icon/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/block -------------------------------------------------------------------------------- /icon/blockmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/blockmask -------------------------------------------------------------------------------- /icon/bomb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/bomb -------------------------------------------------------------------------------- /icon/buttons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/buttons -------------------------------------------------------------------------------- /icon/cherries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cherries -------------------------------------------------------------------------------- /icon/chess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/chess -------------------------------------------------------------------------------- /icon/cloudy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cloudy -------------------------------------------------------------------------------- /icon/conch1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/conch1 -------------------------------------------------------------------------------- /icon/conch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/conch2 -------------------------------------------------------------------------------- /icon/copter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/copter -------------------------------------------------------------------------------- /icon/copy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/copy -------------------------------------------------------------------------------- /icon/cpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cpath -------------------------------------------------------------------------------- /icon/cube1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cube1 -------------------------------------------------------------------------------- /icon/cube2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cube2 -------------------------------------------------------------------------------- /icon/cube3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cube3 -------------------------------------------------------------------------------- /icon/cube4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cube4 -------------------------------------------------------------------------------- /icon/cube5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/cube5 -------------------------------------------------------------------------------- /icon/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/debug -------------------------------------------------------------------------------- /icon/dither: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/dither -------------------------------------------------------------------------------- /icon/dkong1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/dkong1 -------------------------------------------------------------------------------- /icon/dng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/dng -------------------------------------------------------------------------------- /icon/dnguy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/dnguy -------------------------------------------------------------------------------- /icon/document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/document -------------------------------------------------------------------------------- /icon/easel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/easel -------------------------------------------------------------------------------- /icon/editor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/editor -------------------------------------------------------------------------------- /icon/emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/emacs -------------------------------------------------------------------------------- /icon/eye/eye: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye -------------------------------------------------------------------------------- /icon/eye/eye1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye1 -------------------------------------------------------------------------------- /icon/eye/eye10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye10 -------------------------------------------------------------------------------- /icon/eye/eye11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye11 -------------------------------------------------------------------------------- /icon/eye/eye12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye12 -------------------------------------------------------------------------------- /icon/eye/eye13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye13 -------------------------------------------------------------------------------- /icon/eye/eye14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye14 -------------------------------------------------------------------------------- /icon/eye/eye15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye15 -------------------------------------------------------------------------------- /icon/eye/eye16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye16 -------------------------------------------------------------------------------- /icon/eye/eye17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye17 -------------------------------------------------------------------------------- /icon/eye/eye18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye18 -------------------------------------------------------------------------------- /icon/eye/eye19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye19 -------------------------------------------------------------------------------- /icon/eye/eye2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye2 -------------------------------------------------------------------------------- /icon/eye/eye20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye20 -------------------------------------------------------------------------------- /icon/eye/eye21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye21 -------------------------------------------------------------------------------- /icon/eye/eye22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye22 -------------------------------------------------------------------------------- /icon/eye/eye23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye23 -------------------------------------------------------------------------------- /icon/eye/eye24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye24 -------------------------------------------------------------------------------- /icon/eye/eye3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye3 -------------------------------------------------------------------------------- /icon/eye/eye4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye4 -------------------------------------------------------------------------------- /icon/eye/eye5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye5 -------------------------------------------------------------------------------- /icon/eye/eye6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye6 -------------------------------------------------------------------------------- /icon/eye/eye7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye7 -------------------------------------------------------------------------------- /icon/eye/eye8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye8 -------------------------------------------------------------------------------- /icon/eye/eye9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye/eye9 -------------------------------------------------------------------------------- /icon/eye_bld1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye_bld1 -------------------------------------------------------------------------------- /icon/eye_bld2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye_bld2 -------------------------------------------------------------------------------- /icon/eye_bld3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eye_bld3 -------------------------------------------------------------------------------- /icon/eyefrontmask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eyefrontmask -------------------------------------------------------------------------------- /icon/eyesidemask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eyesidemask -------------------------------------------------------------------------------- /icon/eyesmaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/eyesmaller -------------------------------------------------------------------------------- /icon/file-cabinet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/file-cabinet -------------------------------------------------------------------------------- /icon/file_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/file_open -------------------------------------------------------------------------------- /icon/file_shut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/file_shut -------------------------------------------------------------------------------- /icon/file_shutb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/file_shutb -------------------------------------------------------------------------------- /icon/floppy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/floppy -------------------------------------------------------------------------------- /icon/floppy1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/floppy1 -------------------------------------------------------------------------------- /icon/folder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/folder -------------------------------------------------------------------------------- /icon/foldercopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/foldercopy -------------------------------------------------------------------------------- /icon/foldergroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/foldergroup -------------------------------------------------------------------------------- /icon/folderin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/folderin -------------------------------------------------------------------------------- /icon/folderkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/folderkey -------------------------------------------------------------------------------- /icon/folderlocked: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/folderlocked -------------------------------------------------------------------------------- /icon/folderout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/folderout -------------------------------------------------------------------------------- /icon/forty_five: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/forty_five -------------------------------------------------------------------------------- /icon/fourarrows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/fourarrows -------------------------------------------------------------------------------- /icon/frog1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/frog1 -------------------------------------------------------------------------------- /icon/frog2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/frog2 -------------------------------------------------------------------------------- /icon/gcan_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/gcan_open -------------------------------------------------------------------------------- /icon/gcan_shut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/gcan_shut -------------------------------------------------------------------------------- /icon/ghost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ghost -------------------------------------------------------------------------------- /icon/gnu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/gnu -------------------------------------------------------------------------------- /icon/gnumacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/gnumacs -------------------------------------------------------------------------------- /icon/graphics: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/graphics -------------------------------------------------------------------------------- /icon/grey/0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/0 -------------------------------------------------------------------------------- /icon/grey/100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/100 -------------------------------------------------------------------------------- /icon/grey/15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/15 -------------------------------------------------------------------------------- /icon/grey/20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/20 -------------------------------------------------------------------------------- /icon/grey/25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/25 -------------------------------------------------------------------------------- /icon/grey/33: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/33 -------------------------------------------------------------------------------- /icon/grey/50: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/50 -------------------------------------------------------------------------------- /icon/grey/67: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/67 -------------------------------------------------------------------------------- /icon/grey/75: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/75 -------------------------------------------------------------------------------- /icon/grey/80: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/80 -------------------------------------------------------------------------------- /icon/grey/85: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/grey/85 -------------------------------------------------------------------------------- /icon/hammer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/hammer -------------------------------------------------------------------------------- /icon/hand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/hand -------------------------------------------------------------------------------- /icon/hand_mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/hand_mouse -------------------------------------------------------------------------------- /icon/ify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ify -------------------------------------------------------------------------------- /icon/interdict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/interdict -------------------------------------------------------------------------------- /icon/letter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/letter -------------------------------------------------------------------------------- /icon/letters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/letters -------------------------------------------------------------------------------- /icon/lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/lock -------------------------------------------------------------------------------- /icon/martini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/martini -------------------------------------------------------------------------------- /icon/mbox-opening: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox-opening -------------------------------------------------------------------------------- /icon/mbox2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox2 -------------------------------------------------------------------------------- /icon/mbox_closed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox_closed -------------------------------------------------------------------------------- /icon/mbox_full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox_full -------------------------------------------------------------------------------- /icon/mbox_open: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox_open -------------------------------------------------------------------------------- /icon/mbox_zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mbox_zip -------------------------------------------------------------------------------- /icon/mclock/hhand0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand0 -------------------------------------------------------------------------------- /icon/mclock/hhand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand1 -------------------------------------------------------------------------------- /icon/mclock/hhand10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand10 -------------------------------------------------------------------------------- /icon/mclock/hhand11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand11 -------------------------------------------------------------------------------- /icon/mclock/hhand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand2 -------------------------------------------------------------------------------- /icon/mclock/hhand3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand3 -------------------------------------------------------------------------------- /icon/mclock/hhand4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand4 -------------------------------------------------------------------------------- /icon/mclock/hhand5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand5 -------------------------------------------------------------------------------- /icon/mclock/hhand6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand6 -------------------------------------------------------------------------------- /icon/mclock/hhand7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand7 -------------------------------------------------------------------------------- /icon/mclock/hhand8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand8 -------------------------------------------------------------------------------- /icon/mclock/hhand9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/hhand9 -------------------------------------------------------------------------------- /icon/mclock/mhand0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand0 -------------------------------------------------------------------------------- /icon/mclock/mhand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand1 -------------------------------------------------------------------------------- /icon/mclock/mhand10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand10 -------------------------------------------------------------------------------- /icon/mclock/mhand11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand11 -------------------------------------------------------------------------------- /icon/mclock/mhand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand2 -------------------------------------------------------------------------------- /icon/mclock/mhand3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand3 -------------------------------------------------------------------------------- /icon/mclock/mhand4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand4 -------------------------------------------------------------------------------- /icon/mclock/mhand5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand5 -------------------------------------------------------------------------------- /icon/mclock/mhand6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand6 -------------------------------------------------------------------------------- /icon/mclock/mhand7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand7 -------------------------------------------------------------------------------- /icon/mclock/mhand8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand8 -------------------------------------------------------------------------------- /icon/mclock/mhand9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhand9 -------------------------------------------------------------------------------- /icon/mclock/mhhand0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand0 -------------------------------------------------------------------------------- /icon/mclock/mhhand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand1 -------------------------------------------------------------------------------- /icon/mclock/mhhand10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand10 -------------------------------------------------------------------------------- /icon/mclock/mhhand11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand11 -------------------------------------------------------------------------------- /icon/mclock/mhhand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand2 -------------------------------------------------------------------------------- /icon/mclock/mhhand3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand3 -------------------------------------------------------------------------------- /icon/mclock/mhhand4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand4 -------------------------------------------------------------------------------- /icon/mclock/mhhand5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand5 -------------------------------------------------------------------------------- /icon/mclock/mhhand6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand6 -------------------------------------------------------------------------------- /icon/mclock/mhhand7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand7 -------------------------------------------------------------------------------- /icon/mclock/mhhand8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand8 -------------------------------------------------------------------------------- /icon/mclock/mhhand9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mhhand9 -------------------------------------------------------------------------------- /icon/mclock/mickface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mickface -------------------------------------------------------------------------------- /icon/mclock/mmhand0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand0 -------------------------------------------------------------------------------- /icon/mclock/mmhand1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand1 -------------------------------------------------------------------------------- /icon/mclock/mmhand10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand10 -------------------------------------------------------------------------------- /icon/mclock/mmhand11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand11 -------------------------------------------------------------------------------- /icon/mclock/mmhand2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand2 -------------------------------------------------------------------------------- /icon/mclock/mmhand3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand3 -------------------------------------------------------------------------------- /icon/mclock/mmhand4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand4 -------------------------------------------------------------------------------- /icon/mclock/mmhand5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand5 -------------------------------------------------------------------------------- /icon/mclock/mmhand6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand6 -------------------------------------------------------------------------------- /icon/mclock/mmhand7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand7 -------------------------------------------------------------------------------- /icon/mclock/mmhand8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand8 -------------------------------------------------------------------------------- /icon/mclock/mmhand9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mclock/mmhand9 -------------------------------------------------------------------------------- /icon/mgr_audio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgr_audio -------------------------------------------------------------------------------- /icon/mgrbd/blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/blob -------------------------------------------------------------------------------- /icon/mgrbd/blob2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/blob2 -------------------------------------------------------------------------------- /icon/mgrbd/boulder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/boulder -------------------------------------------------------------------------------- /icon/mgrbd/diamond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/diamond -------------------------------------------------------------------------------- /icon/mgrbd/diamond2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/diamond2 -------------------------------------------------------------------------------- /icon/mgrbd/eater: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/eater -------------------------------------------------------------------------------- /icon/mgrbd/eater2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/eater2 -------------------------------------------------------------------------------- /icon/mgrbd/exit2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/exit2 -------------------------------------------------------------------------------- /icon/mgrbd/exit3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/exit3 -------------------------------------------------------------------------------- /icon/mgrbd/explosion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/explosion -------------------------------------------------------------------------------- /icon/mgrbd/grass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/grass -------------------------------------------------------------------------------- /icon/mgrbd/grey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/grey -------------------------------------------------------------------------------- /icon/mgrbd/icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/icon -------------------------------------------------------------------------------- /icon/mgrbd/lmonster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/lmonster -------------------------------------------------------------------------------- /icon/mgrbd/lmonster2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/lmonster2 -------------------------------------------------------------------------------- /icon/mgrbd/nucbal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/nucbal -------------------------------------------------------------------------------- /icon/mgrbd/player: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/player -------------------------------------------------------------------------------- /icon/mgrbd/player2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/player2 -------------------------------------------------------------------------------- /icon/mgrbd/rmonster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/rmonster -------------------------------------------------------------------------------- /icon/mgrbd/rmonster2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/rmonster2 -------------------------------------------------------------------------------- /icon/mgrbd/space: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/space -------------------------------------------------------------------------------- /icon/mgrbd/steel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/steel -------------------------------------------------------------------------------- /icon/mgrbd/tinkle1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/tinkle1 -------------------------------------------------------------------------------- /icon/mgrbd/tinkle2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/tinkle2 -------------------------------------------------------------------------------- /icon/mgrbd/wall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/wall -------------------------------------------------------------------------------- /icon/mgrbd/wall2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mgrbd/wall2 -------------------------------------------------------------------------------- /icon/mouse_cut_lh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/mouse_cut_lh -------------------------------------------------------------------------------- /icon/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/movie -------------------------------------------------------------------------------- /icon/movie1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/movie1 -------------------------------------------------------------------------------- /icon/movie2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/movie2 -------------------------------------------------------------------------------- /icon/msg_board: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/msg_board -------------------------------------------------------------------------------- /icon/msg_none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/msg_none -------------------------------------------------------------------------------- /icon/msg_note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/msg_note -------------------------------------------------------------------------------- /icon/msg_read: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/msg_read -------------------------------------------------------------------------------- /icon/nobozos1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/nobozos1 -------------------------------------------------------------------------------- /icon/nose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/nose -------------------------------------------------------------------------------- /icon/noseback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/noseback -------------------------------------------------------------------------------- /icon/nosefront: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/nosefront -------------------------------------------------------------------------------- /icon/nosmoking: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/nosmoking -------------------------------------------------------------------------------- /icon/notes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/notes -------------------------------------------------------------------------------- /icon/null: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/null -------------------------------------------------------------------------------- /icon/partlycloudy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/partlycloudy -------------------------------------------------------------------------------- /icon/partlysunny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/partlysunny -------------------------------------------------------------------------------- /icon/penciledit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/penciledit -------------------------------------------------------------------------------- /icon/penedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/penedit -------------------------------------------------------------------------------- /icon/ptr_laser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ptr_laser -------------------------------------------------------------------------------- /icon/ptr_laseron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ptr_laseron -------------------------------------------------------------------------------- /icon/ptr_tj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ptr_tj -------------------------------------------------------------------------------- /icon/rainy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/rainy -------------------------------------------------------------------------------- /icon/reel1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/reel1 -------------------------------------------------------------------------------- /icon/reel2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/reel2 -------------------------------------------------------------------------------- /icon/reel3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/reel3 -------------------------------------------------------------------------------- /icon/reel4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/reel4 -------------------------------------------------------------------------------- /icon/sandclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/sandclock -------------------------------------------------------------------------------- /icon/screwdriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/screwdriver -------------------------------------------------------------------------------- /icon/scube1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/scube1 -------------------------------------------------------------------------------- /icon/scube2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/scube2 -------------------------------------------------------------------------------- /icon/scube3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/scube3 -------------------------------------------------------------------------------- /icon/scube4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/scube4 -------------------------------------------------------------------------------- /icon/scube5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/scube5 -------------------------------------------------------------------------------- /icon/select: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/select -------------------------------------------------------------------------------- /icon/server/ball_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_1 -------------------------------------------------------------------------------- /icon/server/ball_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_2 -------------------------------------------------------------------------------- /icon/server/ball_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_3 -------------------------------------------------------------------------------- /icon/server/ball_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_4 -------------------------------------------------------------------------------- /icon/server/ball_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_5 -------------------------------------------------------------------------------- /icon/server/ball_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_6 -------------------------------------------------------------------------------- /icon/server/ball_7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_7 -------------------------------------------------------------------------------- /icon/server/ball_8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/ball_8 -------------------------------------------------------------------------------- /icon/server/cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/cr -------------------------------------------------------------------------------- /icon/server/def_pattern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/def_pattern -------------------------------------------------------------------------------- /icon/server/mouse_arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_arrow -------------------------------------------------------------------------------- /icon/server/mouse_box: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_box -------------------------------------------------------------------------------- /icon/server/mouse_bull: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_bull -------------------------------------------------------------------------------- /icon/server/mouse_bull2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_bull2 -------------------------------------------------------------------------------- /icon/server/mouse_cross: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_cross -------------------------------------------------------------------------------- /icon/server/mouse_cup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_cup -------------------------------------------------------------------------------- /icon/server/mouse_cut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/server/mouse_cut -------------------------------------------------------------------------------- /icon/shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/shell -------------------------------------------------------------------------------- /icon/slider_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/slider_h -------------------------------------------------------------------------------- /icon/small_stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/small_stop -------------------------------------------------------------------------------- /icon/smalldriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smalldriver -------------------------------------------------------------------------------- /icon/smallserver/ball_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_1 -------------------------------------------------------------------------------- /icon/smallserver/ball_2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_2 -------------------------------------------------------------------------------- /icon/smallserver/ball_3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_3 -------------------------------------------------------------------------------- /icon/smallserver/ball_4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_4 -------------------------------------------------------------------------------- /icon/smallserver/ball_5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_5 -------------------------------------------------------------------------------- /icon/smallserver/ball_6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_6 -------------------------------------------------------------------------------- /icon/smallserver/ball_7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_7 -------------------------------------------------------------------------------- /icon/smallserver/ball_8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/ball_8 -------------------------------------------------------------------------------- /icon/smallserver/cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallserver/cr -------------------------------------------------------------------------------- /icon/smallserver/def_pattern: -------------------------------------------------------------------------------- 1 | ../server/def_pattern -------------------------------------------------------------------------------- /icon/smallserver/mouse_arrow: -------------------------------------------------------------------------------- 1 | ../server/mouse_arrow -------------------------------------------------------------------------------- /icon/smallserver/mouse_box: -------------------------------------------------------------------------------- 1 | ../server/mouse_box -------------------------------------------------------------------------------- /icon/smallserver/mouse_bull: -------------------------------------------------------------------------------- 1 | ../server/mouse_bull -------------------------------------------------------------------------------- /icon/smallserver/mouse_bull2: -------------------------------------------------------------------------------- 1 | ../server/mouse_bull2 -------------------------------------------------------------------------------- /icon/smallserver/mouse_cross: -------------------------------------------------------------------------------- 1 | ../server/mouse_cross -------------------------------------------------------------------------------- /icon/smallserver/mouse_cup: -------------------------------------------------------------------------------- 1 | ../server/mouse_cup -------------------------------------------------------------------------------- /icon/smallserver/mouse_cut: -------------------------------------------------------------------------------- 1 | ../server/mouse_cut -------------------------------------------------------------------------------- /icon/smallspiff1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallspiff1 -------------------------------------------------------------------------------- /icon/smallspiff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smallspiff2 -------------------------------------------------------------------------------- /icon/smeye1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smeye1 -------------------------------------------------------------------------------- /icon/smeye2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smeye2 -------------------------------------------------------------------------------- /icon/smeye3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smeye3 -------------------------------------------------------------------------------- /icon/smeye4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smeye4 -------------------------------------------------------------------------------- /icon/smileheart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smileheart -------------------------------------------------------------------------------- /icon/smouse0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smouse0 -------------------------------------------------------------------------------- /icon/smouse1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smouse1 -------------------------------------------------------------------------------- /icon/smouse2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smouse2 -------------------------------------------------------------------------------- /icon/smouse3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/smouse3 -------------------------------------------------------------------------------- /icon/soundeditor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/soundeditor -------------------------------------------------------------------------------- /icon/sphere: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/sphere -------------------------------------------------------------------------------- /icon/stopsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/stopsign -------------------------------------------------------------------------------- /icon/stormy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/stormy -------------------------------------------------------------------------------- /icon/sun_mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/sun_mouse -------------------------------------------------------------------------------- /icon/sunny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/sunny -------------------------------------------------------------------------------- /icon/tex-cweb-ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-cweb-ch -------------------------------------------------------------------------------- /icon/tex-cweb-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-cweb-s -------------------------------------------------------------------------------- /icon/tex-dvi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-dvi -------------------------------------------------------------------------------- /icon/tex-gf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-gf -------------------------------------------------------------------------------- /icon/tex-latex-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-latex-s -------------------------------------------------------------------------------- /icon/tex-mf-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-mf-s -------------------------------------------------------------------------------- /icon/tex-pk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-pk -------------------------------------------------------------------------------- /icon/tex-sm-mf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-sm-mf -------------------------------------------------------------------------------- /icon/tex-sm-tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-sm-tex -------------------------------------------------------------------------------- /icon/tex-tex-s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-tex-s -------------------------------------------------------------------------------- /icon/tex-tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-tfm -------------------------------------------------------------------------------- /icon/tex-vf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tex-vf -------------------------------------------------------------------------------- /icon/thinker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/thinker -------------------------------------------------------------------------------- /icon/tombstone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tombstone -------------------------------------------------------------------------------- /icon/tty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/tty -------------------------------------------------------------------------------- /icon/ttys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/ttys -------------------------------------------------------------------------------- /icon/umbrella: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/umbrella -------------------------------------------------------------------------------- /icon/verysunny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/verysunny -------------------------------------------------------------------------------- /icon/veye1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/veye1 -------------------------------------------------------------------------------- /icon/veye2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/veye2 -------------------------------------------------------------------------------- /icon/veye3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/veye3 -------------------------------------------------------------------------------- /icon/wallpaper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/wallpaper -------------------------------------------------------------------------------- /icon/weird_thing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/weird_thing -------------------------------------------------------------------------------- /icon/www/AnchoredImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/AnchoredImage -------------------------------------------------------------------------------- /icon/www/DelayedImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/DelayedImage -------------------------------------------------------------------------------- /icon/www/NoImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/NoImage -------------------------------------------------------------------------------- /icon/www/back: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/back -------------------------------------------------------------------------------- /icon/www/back2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/back2 -------------------------------------------------------------------------------- /icon/www/ball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/ball -------------------------------------------------------------------------------- /icon/www/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/binary -------------------------------------------------------------------------------- /icon/www/binhex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/binhex -------------------------------------------------------------------------------- /icon/www/blank: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/blank -------------------------------------------------------------------------------- /icon/www/broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/broken -------------------------------------------------------------------------------- /icon/www/burst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/burst -------------------------------------------------------------------------------- /icon/www/caution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/caution -------------------------------------------------------------------------------- /icon/www/clock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/clock -------------------------------------------------------------------------------- /icon/www/compressed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/compressed -------------------------------------------------------------------------------- /icon/www/directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/directory -------------------------------------------------------------------------------- /icon/www/disk.drive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/disk.drive -------------------------------------------------------------------------------- /icon/www/diskette: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/diskette -------------------------------------------------------------------------------- /icon/www/display: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/display -------------------------------------------------------------------------------- /icon/www/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/doc -------------------------------------------------------------------------------- /icon/www/fax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/fax -------------------------------------------------------------------------------- /icon/www/file_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/file_server -------------------------------------------------------------------------------- /icon/www/filing.cabinet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/filing.cabinet -------------------------------------------------------------------------------- /icon/www/fixed.disk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/fixed.disk -------------------------------------------------------------------------------- /icon/www/form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/form -------------------------------------------------------------------------------- /icon/www/forward: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/forward -------------------------------------------------------------------------------- /icon/www/ftp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/ftp -------------------------------------------------------------------------------- /icon/www/glossary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/glossary -------------------------------------------------------------------------------- /icon/www/gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/gzip -------------------------------------------------------------------------------- /icon/www/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/help -------------------------------------------------------------------------------- /icon/www/help-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/help-icon -------------------------------------------------------------------------------- /icon/www/home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/home -------------------------------------------------------------------------------- /icon/www/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/image -------------------------------------------------------------------------------- /icon/www/image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/image2 -------------------------------------------------------------------------------- /icon/www/image3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/image3 -------------------------------------------------------------------------------- /icon/www/index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/index -------------------------------------------------------------------------------- /icon/www/index2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/index2 -------------------------------------------------------------------------------- /icon/www/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/info -------------------------------------------------------------------------------- /icon/www/keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/keyboard -------------------------------------------------------------------------------- /icon/www/mail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/mail -------------------------------------------------------------------------------- /icon/www/mail.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/mail.in -------------------------------------------------------------------------------- /icon/www/mail.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/mail.out -------------------------------------------------------------------------------- /icon/www/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/map -------------------------------------------------------------------------------- /icon/www/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/menu -------------------------------------------------------------------------------- /icon/www/mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/mouse -------------------------------------------------------------------------------- /icon/www/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/movie -------------------------------------------------------------------------------- /icon/www/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/network -------------------------------------------------------------------------------- /icon/www/next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/next -------------------------------------------------------------------------------- /icon/www/notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/notebook -------------------------------------------------------------------------------- /icon/www/postscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/postscript -------------------------------------------------------------------------------- /icon/www/printer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/printer -------------------------------------------------------------------------------- /icon/www/rainbow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/rainbow -------------------------------------------------------------------------------- /icon/www/scheduler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/scheduler -------------------------------------------------------------------------------- /icon/www/sound: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/sound -------------------------------------------------------------------------------- /icon/www/sound2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/sound2 -------------------------------------------------------------------------------- /icon/www/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/stop -------------------------------------------------------------------------------- /icon/www/symlink: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/symlink -------------------------------------------------------------------------------- /icon/www/tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/tar -------------------------------------------------------------------------------- /icon/www/telephone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/telephone -------------------------------------------------------------------------------- /icon/www/telnet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/telnet -------------------------------------------------------------------------------- /icon/www/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/text -------------------------------------------------------------------------------- /icon/www/text2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/text2 -------------------------------------------------------------------------------- /icon/www/tn3270: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/tn3270 -------------------------------------------------------------------------------- /icon/www/transfer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/transfer -------------------------------------------------------------------------------- /icon/www/trash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/trash -------------------------------------------------------------------------------- /icon/www/unknown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/unknown -------------------------------------------------------------------------------- /icon/www/uuencoded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/uuencoded -------------------------------------------------------------------------------- /icon/www/workstation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/www/workstation -------------------------------------------------------------------------------- /icon/x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/x -------------------------------------------------------------------------------- /icon/yieldsign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/yieldsign -------------------------------------------------------------------------------- /icon/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/icon/zip -------------------------------------------------------------------------------- /include/mgr/bitblit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/bitblit.h -------------------------------------------------------------------------------- /include/mgr/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/font.h -------------------------------------------------------------------------------- /include/mgr/hfont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/hfont.h -------------------------------------------------------------------------------- /include/mgr/mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/mgr.h -------------------------------------------------------------------------------- /include/mgr/restart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/restart.h -------------------------------------------------------------------------------- /include/mgr/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/share.h -------------------------------------------------------------------------------- /include/mgr/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/include/mgr/window.h -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/clients/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/CMakeLists.txt -------------------------------------------------------------------------------- /src/clients/Ft2fnt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Ft2fnt/Makefile -------------------------------------------------------------------------------- /src/clients/Ft2fnt/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Ft2fnt/ReadMe -------------------------------------------------------------------------------- /src/clients/Ft2fnt/ft2fnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Ft2fnt/ft2fnt.c -------------------------------------------------------------------------------- /src/clients/MDmgrload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/Makefile -------------------------------------------------------------------------------- /src/clients/MDmgrload/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/README -------------------------------------------------------------------------------- /src/clients/MDmgrload/mgrload.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/mgrload.1 -------------------------------------------------------------------------------- /src/clients/MDmgrload/mgrload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/mgrload.c -------------------------------------------------------------------------------- /src/clients/MDmgrload/term.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/term.h -------------------------------------------------------------------------------- /src/clients/MDmgrload/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/MDmgrload/window.h -------------------------------------------------------------------------------- /src/clients/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Makefile -------------------------------------------------------------------------------- /src/clients/Mtx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/Makefile -------------------------------------------------------------------------------- /src/clients/Mtx/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/README -------------------------------------------------------------------------------- /src/clients/Mtx/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/color.c -------------------------------------------------------------------------------- /src/clients/Mtx/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/color.h -------------------------------------------------------------------------------- /src/clients/Mtx/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/command.c -------------------------------------------------------------------------------- /src/clients/Mtx/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/debug.c -------------------------------------------------------------------------------- /src/clients/Mtx/do_func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/do_func.c -------------------------------------------------------------------------------- /src/clients/Mtx/do_sh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/do_sh.c -------------------------------------------------------------------------------- /src/clients/Mtx/getshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/getshell.c -------------------------------------------------------------------------------- /src/clients/Mtx/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/message.c -------------------------------------------------------------------------------- /src/clients/Mtx/mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mgr.c -------------------------------------------------------------------------------- /src/clients/Mtx/mtx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx.1 -------------------------------------------------------------------------------- /src/clients/Mtx/mtx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx.c -------------------------------------------------------------------------------- /src/clients/Mtx/mtx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx.h -------------------------------------------------------------------------------- /src/clients/Mtx/mtx_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx_connect.c -------------------------------------------------------------------------------- /src/clients/Mtx/mtx_hosts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx_hosts.c -------------------------------------------------------------------------------- /src/clients/Mtx/mtx_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx_net.c -------------------------------------------------------------------------------- /src/clients/Mtx/mtx_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/mtx_subs.c -------------------------------------------------------------------------------- /src/clients/Mtx/scripts/Grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/scripts/Grep -------------------------------------------------------------------------------- /src/clients/Mtx/scripts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/scripts/README -------------------------------------------------------------------------------- /src/clients/Mtx/scripts/tap.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Mtx/scripts/tap.mtx -------------------------------------------------------------------------------- /src/clients/Mtx/term.h: -------------------------------------------------------------------------------- 1 | #define OLDMGRBITOPS 2 | #include 3 | -------------------------------------------------------------------------------- /src/clients/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/README -------------------------------------------------------------------------------- /src/clients/Rmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Rmgr/Makefile -------------------------------------------------------------------------------- /src/clients/Rmgr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Rmgr/README -------------------------------------------------------------------------------- /src/clients/Rmgr/rmgr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Rmgr/rmgr.1 -------------------------------------------------------------------------------- /src/clients/Rmgr/rmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Rmgr/rmgr.c -------------------------------------------------------------------------------- /src/clients/Rmgr/rmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Rmgr/rmgr.h -------------------------------------------------------------------------------- /src/clients/Sun/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/Sun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/Makefile -------------------------------------------------------------------------------- /src/clients/Sun/ether.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/ether.1 -------------------------------------------------------------------------------- /src/clients/Sun/ether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/ether.c -------------------------------------------------------------------------------- /src/clients/Sun/ether2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/ether2.c -------------------------------------------------------------------------------- /src/clients/Sun/invert_color.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/invert_color.1 -------------------------------------------------------------------------------- /src/clients/Sun/invert_color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/invert_color.c -------------------------------------------------------------------------------- /src/clients/Sun/overlay.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/overlay.1 -------------------------------------------------------------------------------- /src/clients/Sun/overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/overlay.c -------------------------------------------------------------------------------- /src/clients/Sun/overlayd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/overlayd.c -------------------------------------------------------------------------------- /src/clients/Sun/set_colormap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/set_colormap.1 -------------------------------------------------------------------------------- /src/clients/Sun/set_colormap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/set_colormap.c -------------------------------------------------------------------------------- /src/clients/Sun/setcolormap2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/setcolormap2.c -------------------------------------------------------------------------------- /src/clients/Sun/stat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/stat.1 -------------------------------------------------------------------------------- /src/clients/Sun/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/stat.c -------------------------------------------------------------------------------- /src/clients/Sun/stat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/Sun/stat2.c -------------------------------------------------------------------------------- /src/clients/bitblit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/bitblit/Makefile -------------------------------------------------------------------------------- /src/clients/bitblit/simple/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/examples/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/Makefile -------------------------------------------------------------------------------- /src/clients/examples/art_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/art_data.c -------------------------------------------------------------------------------- /src/clients/examples/bounce.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/bounce.1 -------------------------------------------------------------------------------- /src/clients/examples/bounce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/bounce.c -------------------------------------------------------------------------------- /src/clients/examples/cycle.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/cycle.1 -------------------------------------------------------------------------------- /src/clients/examples/cycle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/cycle.c -------------------------------------------------------------------------------- /src/clients/examples/grav.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/grav.1 -------------------------------------------------------------------------------- /src/clients/examples/grav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/grav.c -------------------------------------------------------------------------------- /src/clients/examples/grid.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/grid.1 -------------------------------------------------------------------------------- /src/clients/examples/grid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/grid.c -------------------------------------------------------------------------------- /src/clients/examples/hilbert.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/hilbert.1 -------------------------------------------------------------------------------- /src/clients/examples/hilbert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/hilbert.c -------------------------------------------------------------------------------- /src/clients/examples/mgreyes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/mgreyes.c -------------------------------------------------------------------------------- /src/clients/examples/oclose.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/oclose.1 -------------------------------------------------------------------------------- /src/clients/examples/oclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/oclose.c -------------------------------------------------------------------------------- /src/clients/examples/walk.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/walk.1 -------------------------------------------------------------------------------- /src/clients/examples/walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/examples/walk.c -------------------------------------------------------------------------------- /src/clients/icon/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/icon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/icon/Makefile -------------------------------------------------------------------------------- /src/clients/icon/zoom.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/icon/zoom.1 -------------------------------------------------------------------------------- /src/clients/icon/zoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/icon/zoom.c -------------------------------------------------------------------------------- /src/clients/misc/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/Makefile -------------------------------------------------------------------------------- /src/clients/misc/ak_eyes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/ak_eyes.c -------------------------------------------------------------------------------- /src/clients/misc/ascfnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/ascfnt.c -------------------------------------------------------------------------------- /src/clients/misc/dmgr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/dmgr.1 -------------------------------------------------------------------------------- /src/clients/misc/dmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/dmgr.c -------------------------------------------------------------------------------- /src/clients/misc/epsfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/epsfilter.c -------------------------------------------------------------------------------- /src/clients/misc/epsfilter.rme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/epsfilter.rme -------------------------------------------------------------------------------- /src/clients/misc/fntasc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/fntasc.c -------------------------------------------------------------------------------- /src/clients/misc/fontinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/fontinfo.c -------------------------------------------------------------------------------- /src/clients/misc/hp_raster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/hp_raster.c -------------------------------------------------------------------------------- /src/clients/misc/lasergrafix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/lasergrafix.c -------------------------------------------------------------------------------- /src/clients/misc/rotate.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/rotate.1 -------------------------------------------------------------------------------- /src/clients/misc/rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/rotate.c -------------------------------------------------------------------------------- /src/clients/misc/set_console.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/set_console.1 -------------------------------------------------------------------------------- /src/clients/misc/set_console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/set_console.c -------------------------------------------------------------------------------- /src/clients/misc/show.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/show.1 -------------------------------------------------------------------------------- /src/clients/misc/show.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/show.c -------------------------------------------------------------------------------- /src/clients/misc/tjfilter.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/tjfilter.1 -------------------------------------------------------------------------------- /src/clients/misc/tjfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/misc/tjfilter.c -------------------------------------------------------------------------------- /src/clients/movie/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/movie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/Makefile -------------------------------------------------------------------------------- /src/clients/movie/get_maps.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/get_maps.1 -------------------------------------------------------------------------------- /src/clients/movie/get_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/get_maps.c -------------------------------------------------------------------------------- /src/clients/movie/getshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/getshort.c -------------------------------------------------------------------------------- /src/clients/movie/getshort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/getshort.h -------------------------------------------------------------------------------- /src/clients/movie/play_data.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/play_data.1 -------------------------------------------------------------------------------- /src/clients/movie/play_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/play_data.c -------------------------------------------------------------------------------- /src/clients/movie/putshort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/putshort.c -------------------------------------------------------------------------------- /src/clients/movie/putshort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/putshort.h -------------------------------------------------------------------------------- /src/clients/movie/shrink.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/shrink.1 -------------------------------------------------------------------------------- /src/clients/movie/shrink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/shrink.c -------------------------------------------------------------------------------- /src/clients/movie/shrink_map.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/shrink_map.1 -------------------------------------------------------------------------------- /src/clients/movie/shrink_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/shrink_map.c -------------------------------------------------------------------------------- /src/clients/movie/time_it.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/time_it.1 -------------------------------------------------------------------------------- /src/clients/movie/time_it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/time_it.sh -------------------------------------------------------------------------------- /src/clients/movie/to_ascii.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/to_ascii.1 -------------------------------------------------------------------------------- /src/clients/movie/to_ascii.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/to_ascii.c -------------------------------------------------------------------------------- /src/clients/movie/to_binary.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/to_binary.1 -------------------------------------------------------------------------------- /src/clients/movie/to_binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/movie/to_binary.c -------------------------------------------------------------------------------- /src/clients/pbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/pbm/Makefile -------------------------------------------------------------------------------- /src/clients/pbm/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/pbm/getopt.h -------------------------------------------------------------------------------- /src/clients/pbm/pbmstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/pbm/pbmstream.c -------------------------------------------------------------------------------- /src/clients/pbm/pbmtoprt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/pbm/pbmtoprt.c -------------------------------------------------------------------------------- /src/clients/pbm/pnmstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/pbm/pnmstream.c -------------------------------------------------------------------------------- /src/clients/portable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Makefile -------------------------------------------------------------------------------- /src/clients/portable/Msg/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/Msg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/README -------------------------------------------------------------------------------- /src/clients/portable/Msg/alias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/alias -------------------------------------------------------------------------------- /src/clients/portable/Msg/do.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/do.c -------------------------------------------------------------------------------- /src/clients/portable/Msg/do.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/do.h -------------------------------------------------------------------------------- /src/clients/portable/Msg/do_ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/do_ls -------------------------------------------------------------------------------- /src/clients/portable/Msg/do_vi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/do_vi -------------------------------------------------------------------------------- /src/clients/portable/Msg/send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/send.c -------------------------------------------------------------------------------- /src/clients/portable/Msg/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/Msg/start -------------------------------------------------------------------------------- /src/clients/portable/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/README -------------------------------------------------------------------------------- /src/clients/portable/Vcr/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/gropbm/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/hpmgr/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/ico/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/ify/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/mgrload/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/mgrload/getload.h: -------------------------------------------------------------------------------- 1 | double getload(void); 2 | -------------------------------------------------------------------------------- /src/clients/portable/mgrplot/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/mgrsketch/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/mphoon/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/pgs/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/sh/bury: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/sh/bury -------------------------------------------------------------------------------- /src/clients/portable/sh/color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/sh/color -------------------------------------------------------------------------------- /src/clients/portable/sh/font: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/sh/font -------------------------------------------------------------------------------- /src/clients/portable/sh/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/sh/menu -------------------------------------------------------------------------------- /src/clients/portable/sh/shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/portable/sh/shape -------------------------------------------------------------------------------- /src/clients/portable/simple/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/texmgr/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/text2font/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/text2font/font2text.1: -------------------------------------------------------------------------------- 1 | .so man1/text2font.1 2 | -------------------------------------------------------------------------------- /src/clients/portable/xbd/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/portable/xbd/patchlevel.h: -------------------------------------------------------------------------------- 1 | #define PATCHLEVEL 0 2 | -------------------------------------------------------------------------------- /src/clients/tests/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/clients/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/Makefile -------------------------------------------------------------------------------- /src/clients/tests/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/event.c -------------------------------------------------------------------------------- /src/clients/tests/half.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/half.c -------------------------------------------------------------------------------- /src/clients/tests/hfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/hfont.c -------------------------------------------------------------------------------- /src/clients/tests/many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/many.c -------------------------------------------------------------------------------- /src/clients/tests/spot.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/spot.1 -------------------------------------------------------------------------------- /src/clients/tests/spot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/spot.c -------------------------------------------------------------------------------- /src/clients/tests/test_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/test_menu.c -------------------------------------------------------------------------------- /src/clients/tests/test_rop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/test_rop.c -------------------------------------------------------------------------------- /src/clients/tests/trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/clients/tests/trans.c -------------------------------------------------------------------------------- /src/libbitblit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/CMakeLists.txt -------------------------------------------------------------------------------- /src/libbitblit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/Makefile -------------------------------------------------------------------------------- /src/libbitblit/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/README -------------------------------------------------------------------------------- /src/libbitblit/bitblit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/bitblit.3 -------------------------------------------------------------------------------- /src/libbitblit/bitmap/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/movie/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/movie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/movie/Makefile -------------------------------------------------------------------------------- /src/libbitblit/movie/movie.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/movie/movie.5 -------------------------------------------------------------------------------- /src/libbitblit/movie/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/movie/share.c -------------------------------------------------------------------------------- /src/libbitblit/relics-of-an-ancient-past/colorport/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/relics-of-an-ancient-past/linux/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/relics-of-an-ancient-past/pixrect/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/relics-of-an-ancient-past/sunmono/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/seqbitmap/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/test/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libbitblit/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/test/Makefile -------------------------------------------------------------------------------- /src/libbitblit/test/lines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/test/lines.c -------------------------------------------------------------------------------- /src/libbitblit/test/monorop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/test/monorop.c -------------------------------------------------------------------------------- /src/libbitblit/test/rops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libbitblit/test/rops.c -------------------------------------------------------------------------------- /src/libmgr/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/libmgr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/CMakeLists.txt -------------------------------------------------------------------------------- /src/libmgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/Makefile -------------------------------------------------------------------------------- /src/libmgr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/README -------------------------------------------------------------------------------- /src/libmgr/ckmgrterm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/ckmgrterm.c -------------------------------------------------------------------------------- /src/libmgr/hfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/hfont.c -------------------------------------------------------------------------------- /src/libmgr/is_mgr_term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/is_mgr_term.c -------------------------------------------------------------------------------- /src/libmgr/m_bitc_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_bitc_send.c -------------------------------------------------------------------------------- /src/libmgr/m_bitfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_bitfile.c -------------------------------------------------------------------------------- /src/libmgr/m_getborder.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getborder.3 -------------------------------------------------------------------------------- /src/libmgr/m_getborder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getborder.c -------------------------------------------------------------------------------- /src/libmgr/m_getdepth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getdepth.c -------------------------------------------------------------------------------- /src/libmgr/m_getevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getevent.c -------------------------------------------------------------------------------- /src/libmgr/m_getfontid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getfontid.c -------------------------------------------------------------------------------- /src/libmgr/m_getfontn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getfontn.c -------------------------------------------------------------------------------- /src/libmgr/m_getfonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getfonts.c -------------------------------------------------------------------------------- /src/libmgr/m_gethost.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_gethost.3 -------------------------------------------------------------------------------- /src/libmgr/m_gethost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_gethost.c -------------------------------------------------------------------------------- /src/libmgr/m_getpalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getpalette.c -------------------------------------------------------------------------------- /src/libmgr/m_getscreen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getscreen.c -------------------------------------------------------------------------------- /src/libmgr/m_getwindowp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getwindowp.c -------------------------------------------------------------------------------- /src/libmgr/m_getwindows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_getwindows.c -------------------------------------------------------------------------------- /src/libmgr/m_localsrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_localsrv.c -------------------------------------------------------------------------------- /src/libmgr/m_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_parse.c -------------------------------------------------------------------------------- /src/libmgr/m_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_setup.c -------------------------------------------------------------------------------- /src/libmgr/m_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/m_tty.c -------------------------------------------------------------------------------- /src/libmgr/oldinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/oldinfo.c -------------------------------------------------------------------------------- /src/libmgr/term.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/libmgr/term.c -------------------------------------------------------------------------------- /src/mgr/.depend: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mgr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/CMakeLists.txt -------------------------------------------------------------------------------- /src/mgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/Makefile -------------------------------------------------------------------------------- /src/mgr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/README -------------------------------------------------------------------------------- /src/mgr/Write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/Write.c -------------------------------------------------------------------------------- /src/mgr/Write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/Write.h -------------------------------------------------------------------------------- /src/mgr/border.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/border.c -------------------------------------------------------------------------------- /src/mgr/border.h: -------------------------------------------------------------------------------- 1 | void border(WINDOW *win, int be_fat); 2 | -------------------------------------------------------------------------------- /src/mgr/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/clip.h -------------------------------------------------------------------------------- /src/mgr/colormap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/colormap.c -------------------------------------------------------------------------------- /src/mgr/colormap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/colormap.h -------------------------------------------------------------------------------- /src/mgr/copyright.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/copyright.c -------------------------------------------------------------------------------- /src/mgr/copyright.h: -------------------------------------------------------------------------------- 1 | void copyright(BITMAP *where, char *password); 2 | -------------------------------------------------------------------------------- /src/mgr/cut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/cut.c -------------------------------------------------------------------------------- /src/mgr/cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/cut.h -------------------------------------------------------------------------------- /src/mgr/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/data.c -------------------------------------------------------------------------------- /src/mgr/debug_flags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/debug_flags.c -------------------------------------------------------------------------------- /src/mgr/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/defs.h -------------------------------------------------------------------------------- /src/mgr/destroy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/destroy.c -------------------------------------------------------------------------------- /src/mgr/destroy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/destroy.h -------------------------------------------------------------------------------- /src/mgr/do_buckey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_buckey.c -------------------------------------------------------------------------------- /src/mgr/do_buckey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_buckey.h -------------------------------------------------------------------------------- /src/mgr/do_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_button.c -------------------------------------------------------------------------------- /src/mgr/do_button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_button.h -------------------------------------------------------------------------------- /src/mgr/do_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_event.c -------------------------------------------------------------------------------- /src/mgr/do_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_event.h -------------------------------------------------------------------------------- /src/mgr/do_menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_menu.c -------------------------------------------------------------------------------- /src/mgr/do_menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/do_menu.h -------------------------------------------------------------------------------- /src/mgr/down_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/down_load.c -------------------------------------------------------------------------------- /src/mgr/down_load.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/down_load.h -------------------------------------------------------------------------------- /src/mgr/erase_win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/erase_win.c -------------------------------------------------------------------------------- /src/mgr/erase_win.h: -------------------------------------------------------------------------------- 1 | void erase_win(BITMAP *map); 2 | -------------------------------------------------------------------------------- /src/mgr/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/event.h -------------------------------------------------------------------------------- /src/mgr/font.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/font.5 -------------------------------------------------------------------------------- /src/mgr/font_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/font_subs.c -------------------------------------------------------------------------------- /src/mgr/font_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/font_subs.h -------------------------------------------------------------------------------- /src/mgr/get_font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_font.c -------------------------------------------------------------------------------- /src/mgr/get_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_font.h -------------------------------------------------------------------------------- /src/mgr/get_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_info.c -------------------------------------------------------------------------------- /src/mgr/get_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_info.h -------------------------------------------------------------------------------- /src/mgr/get_menus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_menus.c -------------------------------------------------------------------------------- /src/mgr/get_menus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_menus.h -------------------------------------------------------------------------------- /src/mgr/get_rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_rect.c -------------------------------------------------------------------------------- /src/mgr/get_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_rect.h -------------------------------------------------------------------------------- /src/mgr/get_text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_text.c -------------------------------------------------------------------------------- /src/mgr/get_text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/get_text.h -------------------------------------------------------------------------------- /src/mgr/getshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/getshell.c -------------------------------------------------------------------------------- /src/mgr/getshell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/getshell.h -------------------------------------------------------------------------------- /src/mgr/graph_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/graph_subs.c -------------------------------------------------------------------------------- /src/mgr/graph_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/graph_subs.h -------------------------------------------------------------------------------- /src/mgr/intersect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/intersect.c -------------------------------------------------------------------------------- /src/mgr/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/intersect.h -------------------------------------------------------------------------------- /src/mgr/kbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/kbd.c -------------------------------------------------------------------------------- /src/mgr/kbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/kbd.h -------------------------------------------------------------------------------- /src/mgr/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/menu.h -------------------------------------------------------------------------------- /src/mgr/mgr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mgr.1 -------------------------------------------------------------------------------- /src/mgr/mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mgr.c -------------------------------------------------------------------------------- /src/mgr/mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mgr.h -------------------------------------------------------------------------------- /src/mgr/mgrlogin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mgrlogin.c -------------------------------------------------------------------------------- /src/mgr/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mouse.c -------------------------------------------------------------------------------- /src/mgr/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mouse.h -------------------------------------------------------------------------------- /src/mgr/mouse_get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mouse_get.c -------------------------------------------------------------------------------- /src/mgr/mouse_get.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/mouse_get.h -------------------------------------------------------------------------------- /src/mgr/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/move.c -------------------------------------------------------------------------------- /src/mgr/move.h: -------------------------------------------------------------------------------- 1 | void move_window(void); 2 | /*{{{}}}*/ 3 | -------------------------------------------------------------------------------- /src/mgr/move_box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/move_box.c -------------------------------------------------------------------------------- /src/mgr/move_box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/move_box.h -------------------------------------------------------------------------------- /src/mgr/new_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/new_window.c -------------------------------------------------------------------------------- /src/mgr/new_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/new_window.h -------------------------------------------------------------------------------- /src/mgr/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/popen.c -------------------------------------------------------------------------------- /src/mgr/print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/print.c -------------------------------------------------------------------------------- /src/mgr/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/print.h -------------------------------------------------------------------------------- /src/mgr/proto.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /src/mgr/put_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/put_window.c -------------------------------------------------------------------------------- /src/mgr/put_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/put_window.h -------------------------------------------------------------------------------- /src/mgr/scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/scroll.c -------------------------------------------------------------------------------- /src/mgr/scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/scroll.h -------------------------------------------------------------------------------- /src/mgr/set_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/set_mode.c -------------------------------------------------------------------------------- /src/mgr/set_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/set_mode.h -------------------------------------------------------------------------------- /src/mgr/shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/shape.c -------------------------------------------------------------------------------- /src/mgr/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/shape.h -------------------------------------------------------------------------------- /src/mgr/sigdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/sigdata.c -------------------------------------------------------------------------------- /src/mgr/sigdata.h: -------------------------------------------------------------------------------- 1 | void catch (int sig); 2 | -------------------------------------------------------------------------------- /src/mgr/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/startup.c -------------------------------------------------------------------------------- /src/mgr/startup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/startup.h -------------------------------------------------------------------------------- /src/mgr/subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/subs.c -------------------------------------------------------------------------------- /src/mgr/subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/subs.h -------------------------------------------------------------------------------- /src/mgr/update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/update.c -------------------------------------------------------------------------------- /src/mgr/update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/update.h -------------------------------------------------------------------------------- /src/mgr/utmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/utmp.c -------------------------------------------------------------------------------- /src/mgr/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/utmp.h -------------------------------------------------------------------------------- /src/mgr/win_make.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_make.c -------------------------------------------------------------------------------- /src/mgr/win_make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_make.h -------------------------------------------------------------------------------- /src/mgr/win_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_stack.c -------------------------------------------------------------------------------- /src/mgr/win_stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_stack.h -------------------------------------------------------------------------------- /src/mgr/win_subs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_subs.c -------------------------------------------------------------------------------- /src/mgr/win_subs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/win_subs.h -------------------------------------------------------------------------------- /src/mgr/write_ok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/write_ok.c -------------------------------------------------------------------------------- /src/mgr/write_ok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/mgr/write_ok.h -------------------------------------------------------------------------------- /src/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/tools/Makefile -------------------------------------------------------------------------------- /src/tools/bitmaptoc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/tools/bitmaptoc.1 -------------------------------------------------------------------------------- /src/tools/bitmaptoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/tools/bitmaptoc.c -------------------------------------------------------------------------------- /src/tools/fonttoc.1: -------------------------------------------------------------------------------- 1 | .TH FONTTOC 1 2 | 3 | This manual page isn't written yet. 4 | -------------------------------------------------------------------------------- /src/tools/fonttoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerArchaeology/bellcore-mgr/HEAD/src/tools/fonttoc.c --------------------------------------------------------------------------------