├── .gitignore ├── .travis.yml ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── ChangeLog ├── INSTALL ├── Makefile.am ├── NEWS ├── NOTES ├── README.md ├── TODO ├── acconfig.h ├── autogen.sh ├── config.rpath ├── configure.in ├── debug ├── Makefile.am ├── debug.c └── debug.h ├── doc ├── Makefile.am ├── about.html ├── back.png ├── beyeview.png ├── cd-root.png ├── cd-up.png ├── custom.dsl ├── dirtree.png ├── filelist.png ├── fsv.html ├── fsv.sgml ├── mapv.png ├── menus.html ├── mouse.html ├── startup.html ├── t1.html ├── treev.png ├── viewport.png ├── window.html └── window.png ├── fsv.spec.in ├── fsv.wmconfig ├── intl ├── Makefile.am ├── libgettext.h └── po2tbl.sed.in ├── lib ├── Makefile.am ├── fileblocks.c ├── getopt.c ├── getopt.h ├── getopt1.c ├── nvstore.c ├── nvstore.h └── scandir.c ├── mkinstalldirs ├── po ├── ChangeLog ├── Makefile.in.in ├── POTFILES.in ├── cat-id-tbl.c ├── fsv.pot └── stamp-cat-id ├── src ├── Makefile.am ├── TODO ├── about.c ├── about.h ├── animation.c ├── animation.h ├── callbacks.c ├── callbacks.h ├── camera.c ├── camera.h ├── colexp.c ├── colexp.h ├── color.c ├── color.h ├── common.c ├── common.h ├── dialog.c ├── dialog.h ├── dirtree.c ├── dirtree.h ├── filelist.c ├── filelist.h ├── fsv.c ├── fsv.h ├── fsv3d.h ├── geometry.c ├── geometry.h ├── gui.c ├── gui.h ├── ogl.c ├── ogl.h ├── scanfs.c ├── scanfs.h ├── tmaptext.c ├── tmaptext.h ├── viewport.c ├── viewport.h ├── window.c ├── window.h └── xmaps │ ├── back.xpm │ ├── birdseye_view.xpm │ ├── blockdev.xpm │ ├── button_cancel.xpm │ ├── button_ok.xpm │ ├── cd-root.xpm │ ├── cd-up.xpm │ ├── chardev.xpm │ ├── charset.xbm │ ├── fifo.xpm │ ├── folder.xpm │ ├── fsv-icon.xpm │ ├── mini-blockdev.xpm │ ├── mini-chardev.xpm │ ├── mini-fifo.xpm │ ├── mini-folder-open.xpm │ ├── mini-folder.xpm │ ├── mini-regfile.xpm │ ├── mini-socket.xpm │ ├── mini-symlink.xpm │ ├── mini-unknown.xpm │ ├── regfile.xpm │ ├── socket.xpm │ ├── symlink.xpm │ └── unknown.xpm └── stamp-h.in /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/.travis.yml -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Daniel Richard G. 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/NOTES -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/TODO -------------------------------------------------------------------------------- /acconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/acconfig.h -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /configure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/configure.in -------------------------------------------------------------------------------- /debug/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/debug/Makefile.am -------------------------------------------------------------------------------- /debug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/debug/debug.c -------------------------------------------------------------------------------- /debug/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/debug/debug.h -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/about.html -------------------------------------------------------------------------------- /doc/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/back.png -------------------------------------------------------------------------------- /doc/beyeview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/beyeview.png -------------------------------------------------------------------------------- /doc/cd-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/cd-root.png -------------------------------------------------------------------------------- /doc/cd-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/cd-up.png -------------------------------------------------------------------------------- /doc/custom.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/custom.dsl -------------------------------------------------------------------------------- /doc/dirtree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/dirtree.png -------------------------------------------------------------------------------- /doc/filelist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/filelist.png -------------------------------------------------------------------------------- /doc/fsv.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/fsv.html -------------------------------------------------------------------------------- /doc/fsv.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/fsv.sgml -------------------------------------------------------------------------------- /doc/mapv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/mapv.png -------------------------------------------------------------------------------- /doc/menus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/menus.html -------------------------------------------------------------------------------- /doc/mouse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/mouse.html -------------------------------------------------------------------------------- /doc/startup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/startup.html -------------------------------------------------------------------------------- /doc/t1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/t1.html -------------------------------------------------------------------------------- /doc/treev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/treev.png -------------------------------------------------------------------------------- /doc/viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/viewport.png -------------------------------------------------------------------------------- /doc/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/window.html -------------------------------------------------------------------------------- /doc/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/doc/window.png -------------------------------------------------------------------------------- /fsv.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/fsv.spec.in -------------------------------------------------------------------------------- /fsv.wmconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/fsv.wmconfig -------------------------------------------------------------------------------- /intl/Makefile.am: -------------------------------------------------------------------------------- 1 | EXTRA_DIST = libgettext.h po2tbl.sed.in 2 | -------------------------------------------------------------------------------- /intl/libgettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/intl/libgettext.h -------------------------------------------------------------------------------- /intl/po2tbl.sed.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/intl/po2tbl.sed.in -------------------------------------------------------------------------------- /lib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/Makefile.am -------------------------------------------------------------------------------- /lib/fileblocks.c: -------------------------------------------------------------------------------- 1 | /* dummy for autoconf */ 2 | -------------------------------------------------------------------------------- /lib/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/getopt.c -------------------------------------------------------------------------------- /lib/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/getopt.h -------------------------------------------------------------------------------- /lib/getopt1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/getopt1.c -------------------------------------------------------------------------------- /lib/nvstore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/nvstore.c -------------------------------------------------------------------------------- /lib/nvstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/nvstore.h -------------------------------------------------------------------------------- /lib/scandir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/lib/scandir.c -------------------------------------------------------------------------------- /mkinstalldirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/mkinstalldirs -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/cat-id-tbl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/po/cat-id-tbl.c -------------------------------------------------------------------------------- /po/fsv.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/po/fsv.pot -------------------------------------------------------------------------------- /po/stamp-cat-id: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/TODO -------------------------------------------------------------------------------- /src/about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/about.c -------------------------------------------------------------------------------- /src/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/about.h -------------------------------------------------------------------------------- /src/animation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/animation.c -------------------------------------------------------------------------------- /src/animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/animation.h -------------------------------------------------------------------------------- /src/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/callbacks.c -------------------------------------------------------------------------------- /src/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/callbacks.h -------------------------------------------------------------------------------- /src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/camera.c -------------------------------------------------------------------------------- /src/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/camera.h -------------------------------------------------------------------------------- /src/colexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/colexp.c -------------------------------------------------------------------------------- /src/colexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/colexp.h -------------------------------------------------------------------------------- /src/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/color.c -------------------------------------------------------------------------------- /src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/color.h -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/common.h -------------------------------------------------------------------------------- /src/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/dialog.c -------------------------------------------------------------------------------- /src/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/dialog.h -------------------------------------------------------------------------------- /src/dirtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/dirtree.c -------------------------------------------------------------------------------- /src/dirtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/dirtree.h -------------------------------------------------------------------------------- /src/filelist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/filelist.c -------------------------------------------------------------------------------- /src/filelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/filelist.h -------------------------------------------------------------------------------- /src/fsv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/fsv.c -------------------------------------------------------------------------------- /src/fsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/fsv.h -------------------------------------------------------------------------------- /src/fsv3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/fsv3d.h -------------------------------------------------------------------------------- /src/geometry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/geometry.c -------------------------------------------------------------------------------- /src/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/geometry.h -------------------------------------------------------------------------------- /src/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/gui.c -------------------------------------------------------------------------------- /src/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/gui.h -------------------------------------------------------------------------------- /src/ogl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/ogl.c -------------------------------------------------------------------------------- /src/ogl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/ogl.h -------------------------------------------------------------------------------- /src/scanfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/scanfs.c -------------------------------------------------------------------------------- /src/scanfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/scanfs.h -------------------------------------------------------------------------------- /src/tmaptext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/tmaptext.c -------------------------------------------------------------------------------- /src/tmaptext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/tmaptext.h -------------------------------------------------------------------------------- /src/viewport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/viewport.c -------------------------------------------------------------------------------- /src/viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/viewport.h -------------------------------------------------------------------------------- /src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/window.c -------------------------------------------------------------------------------- /src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/window.h -------------------------------------------------------------------------------- /src/xmaps/back.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/back.xpm -------------------------------------------------------------------------------- /src/xmaps/birdseye_view.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/birdseye_view.xpm -------------------------------------------------------------------------------- /src/xmaps/blockdev.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/blockdev.xpm -------------------------------------------------------------------------------- /src/xmaps/button_cancel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/button_cancel.xpm -------------------------------------------------------------------------------- /src/xmaps/button_ok.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/button_ok.xpm -------------------------------------------------------------------------------- /src/xmaps/cd-root.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/cd-root.xpm -------------------------------------------------------------------------------- /src/xmaps/cd-up.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/cd-up.xpm -------------------------------------------------------------------------------- /src/xmaps/chardev.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/chardev.xpm -------------------------------------------------------------------------------- /src/xmaps/charset.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/charset.xbm -------------------------------------------------------------------------------- /src/xmaps/fifo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/fifo.xpm -------------------------------------------------------------------------------- /src/xmaps/folder.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/folder.xpm -------------------------------------------------------------------------------- /src/xmaps/fsv-icon.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/fsv-icon.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-blockdev.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-blockdev.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-chardev.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-chardev.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-fifo.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-fifo.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-folder-open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-folder-open.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-folder.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-folder.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-regfile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-regfile.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-socket.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-socket.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-symlink.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-symlink.xpm -------------------------------------------------------------------------------- /src/xmaps/mini-unknown.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/mini-unknown.xpm -------------------------------------------------------------------------------- /src/xmaps/regfile.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/regfile.xpm -------------------------------------------------------------------------------- /src/xmaps/socket.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/socket.xpm -------------------------------------------------------------------------------- /src/xmaps/symlink.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/symlink.xpm -------------------------------------------------------------------------------- /src/xmaps/unknown.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuelenaere/fsv/HEAD/src/xmaps/unknown.xpm -------------------------------------------------------------------------------- /stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | --------------------------------------------------------------------------------