├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.in ├── README ├── README.md ├── RELNOTES ├── configure ├── configure.ac ├── firejail-ui.png ├── install.sh ├── mkasc.sh ├── mkdeb.sh ├── mkman.sh ├── platform ├── debian │ ├── control │ └── copyright └── rpm │ ├── firetools.spec │ ├── mkrpm.sh │ └── old-mkrpm.sh ├── src ├── Makefile ├── common │ ├── common.h │ ├── hyperlink.cpp │ ├── hyperlink.h │ ├── pid.cpp │ ├── pid.h │ ├── utils.cpp │ └── utils.h ├── firejail-ui │ ├── appdb.cpp │ ├── appdb.h │ ├── firejail-ui.desktop │ ├── firejail-ui.pro │ ├── firejail-ui.qrc │ ├── firejail_ui.h │ ├── help_widget.cpp │ ├── help_widget.h │ ├── home_widget.cpp │ ├── home_widget.h │ ├── main.cpp │ ├── network.cpp │ ├── resources │ │ ├── background.png │ │ ├── firejail-ui.png │ │ ├── firetools-minimal.png │ │ ├── firetools.png │ │ └── gnome-fs-directory.png │ ├── restrictions │ ├── uihelp │ ├── uimenus │ ├── wizard.cpp │ └── wizard.h ├── firetools │ ├── applications.cpp │ ├── applications.h │ ├── firetools.desktop │ ├── firetools.h │ ├── firetools.pro │ ├── firetools.qrc │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── resources │ │ ├── firefox.png │ │ ├── firejail-ui.png │ │ ├── firetools-minimal.png │ │ ├── firetools.png │ │ ├── fstats.png │ │ ├── gnome-terminal.png │ │ ├── icedove.png │ │ ├── libreoffice-writer.png │ │ ├── signal-desktop.png │ │ └── signal.svg │ └── uiapps ├── fmgr │ ├── config.cpp │ ├── fmgr.h │ ├── fmgr.pro │ ├── fmgr.qrc │ ├── fs.cpp │ ├── fs.h │ ├── main.cpp │ ├── mainwindow.cpp │ ├── mainwindow.h │ ├── resources │ │ ├── emblem-symbolic-link.png │ │ ├── empty.png │ │ ├── firetools-minimal.png │ │ ├── firetools.png │ │ ├── gnome-fs-directory.png │ │ ├── go-top.png │ │ ├── go-up.png │ │ ├── refresh.png │ │ └── user-home.png │ ├── topwidget.cpp │ └── topwidget.h ├── fstats │ ├── config.cpp │ ├── db.cpp │ ├── db.h │ ├── dbpid.cpp │ ├── dbpid.h │ ├── dbstorage.h │ ├── fstats.h │ ├── fstats.pro │ ├── fstats.qrc │ ├── graph.cpp │ ├── graph.h │ ├── main.cpp │ ├── pid_thread.cpp │ ├── pid_thread.h │ ├── resources │ │ ├── fstats-minimal.png │ │ └── fstats.png │ ├── stats_dialog.cpp │ └── stats_dialog.h └── man │ ├── firejail-ui.txt │ └── firetools.txt └── todo /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/Makefile.in -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/README.md -------------------------------------------------------------------------------- /RELNOTES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/RELNOTES -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/configure.ac -------------------------------------------------------------------------------- /firejail-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/firejail-ui.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "installing..." 4 | -------------------------------------------------------------------------------- /mkasc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/mkasc.sh -------------------------------------------------------------------------------- /mkdeb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/mkdeb.sh -------------------------------------------------------------------------------- /mkman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/mkman.sh -------------------------------------------------------------------------------- /platform/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/platform/debian/control -------------------------------------------------------------------------------- /platform/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/platform/debian/copyright -------------------------------------------------------------------------------- /platform/rpm/firetools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/platform/rpm/firetools.spec -------------------------------------------------------------------------------- /platform/rpm/mkrpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/platform/rpm/mkrpm.sh -------------------------------------------------------------------------------- /platform/rpm/old-mkrpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/platform/rpm/old-mkrpm.sh -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/hyperlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/hyperlink.cpp -------------------------------------------------------------------------------- /src/common/hyperlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/hyperlink.h -------------------------------------------------------------------------------- /src/common/pid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/pid.cpp -------------------------------------------------------------------------------- /src/common/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/pid.h -------------------------------------------------------------------------------- /src/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/utils.cpp -------------------------------------------------------------------------------- /src/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/common/utils.h -------------------------------------------------------------------------------- /src/firejail-ui/appdb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/appdb.cpp -------------------------------------------------------------------------------- /src/firejail-ui/appdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/appdb.h -------------------------------------------------------------------------------- /src/firejail-ui/firejail-ui.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/firejail-ui.desktop -------------------------------------------------------------------------------- /src/firejail-ui/firejail-ui.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/firejail-ui.pro -------------------------------------------------------------------------------- /src/firejail-ui/firejail-ui.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/firejail-ui.qrc -------------------------------------------------------------------------------- /src/firejail-ui/firejail_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/firejail_ui.h -------------------------------------------------------------------------------- /src/firejail-ui/help_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/help_widget.cpp -------------------------------------------------------------------------------- /src/firejail-ui/help_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/help_widget.h -------------------------------------------------------------------------------- /src/firejail-ui/home_widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/home_widget.cpp -------------------------------------------------------------------------------- /src/firejail-ui/home_widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/home_widget.h -------------------------------------------------------------------------------- /src/firejail-ui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/main.cpp -------------------------------------------------------------------------------- /src/firejail-ui/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/network.cpp -------------------------------------------------------------------------------- /src/firejail-ui/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/resources/background.png -------------------------------------------------------------------------------- /src/firejail-ui/resources/firejail-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/resources/firejail-ui.png -------------------------------------------------------------------------------- /src/firejail-ui/resources/firetools-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/resources/firetools-minimal.png -------------------------------------------------------------------------------- /src/firejail-ui/resources/firetools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/resources/firetools.png -------------------------------------------------------------------------------- /src/firejail-ui/resources/gnome-fs-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/resources/gnome-fs-directory.png -------------------------------------------------------------------------------- /src/firejail-ui/restrictions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/restrictions -------------------------------------------------------------------------------- /src/firejail-ui/uihelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/uihelp -------------------------------------------------------------------------------- /src/firejail-ui/uimenus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/uimenus -------------------------------------------------------------------------------- /src/firejail-ui/wizard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/wizard.cpp -------------------------------------------------------------------------------- /src/firejail-ui/wizard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firejail-ui/wizard.h -------------------------------------------------------------------------------- /src/firetools/applications.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/applications.cpp -------------------------------------------------------------------------------- /src/firetools/applications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/applications.h -------------------------------------------------------------------------------- /src/firetools/firetools.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/firetools.desktop -------------------------------------------------------------------------------- /src/firetools/firetools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/firetools.h -------------------------------------------------------------------------------- /src/firetools/firetools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/firetools.pro -------------------------------------------------------------------------------- /src/firetools/firetools.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/firetools.qrc -------------------------------------------------------------------------------- /src/firetools/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/main.cpp -------------------------------------------------------------------------------- /src/firetools/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/mainwindow.cpp -------------------------------------------------------------------------------- /src/firetools/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/mainwindow.h -------------------------------------------------------------------------------- /src/firetools/resources/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/firefox.png -------------------------------------------------------------------------------- /src/firetools/resources/firejail-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/firejail-ui.png -------------------------------------------------------------------------------- /src/firetools/resources/firetools-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/firetools-minimal.png -------------------------------------------------------------------------------- /src/firetools/resources/firetools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/firetools.png -------------------------------------------------------------------------------- /src/firetools/resources/fstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/fstats.png -------------------------------------------------------------------------------- /src/firetools/resources/gnome-terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/gnome-terminal.png -------------------------------------------------------------------------------- /src/firetools/resources/icedove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/icedove.png -------------------------------------------------------------------------------- /src/firetools/resources/libreoffice-writer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/libreoffice-writer.png -------------------------------------------------------------------------------- /src/firetools/resources/signal-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/signal-desktop.png -------------------------------------------------------------------------------- /src/firetools/resources/signal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/resources/signal.svg -------------------------------------------------------------------------------- /src/firetools/uiapps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/firetools/uiapps -------------------------------------------------------------------------------- /src/fmgr/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/config.cpp -------------------------------------------------------------------------------- /src/fmgr/fmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/fmgr.h -------------------------------------------------------------------------------- /src/fmgr/fmgr.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/fmgr.pro -------------------------------------------------------------------------------- /src/fmgr/fmgr.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/fmgr.qrc -------------------------------------------------------------------------------- /src/fmgr/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/fs.cpp -------------------------------------------------------------------------------- /src/fmgr/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/fs.h -------------------------------------------------------------------------------- /src/fmgr/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/main.cpp -------------------------------------------------------------------------------- /src/fmgr/mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/mainwindow.cpp -------------------------------------------------------------------------------- /src/fmgr/mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/mainwindow.h -------------------------------------------------------------------------------- /src/fmgr/resources/emblem-symbolic-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/emblem-symbolic-link.png -------------------------------------------------------------------------------- /src/fmgr/resources/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/empty.png -------------------------------------------------------------------------------- /src/fmgr/resources/firetools-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/firetools-minimal.png -------------------------------------------------------------------------------- /src/fmgr/resources/firetools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/firetools.png -------------------------------------------------------------------------------- /src/fmgr/resources/gnome-fs-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/gnome-fs-directory.png -------------------------------------------------------------------------------- /src/fmgr/resources/go-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/go-top.png -------------------------------------------------------------------------------- /src/fmgr/resources/go-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/go-up.png -------------------------------------------------------------------------------- /src/fmgr/resources/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/refresh.png -------------------------------------------------------------------------------- /src/fmgr/resources/user-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/resources/user-home.png -------------------------------------------------------------------------------- /src/fmgr/topwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/topwidget.cpp -------------------------------------------------------------------------------- /src/fmgr/topwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fmgr/topwidget.h -------------------------------------------------------------------------------- /src/fstats/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/config.cpp -------------------------------------------------------------------------------- /src/fstats/db.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/db.cpp -------------------------------------------------------------------------------- /src/fstats/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/db.h -------------------------------------------------------------------------------- /src/fstats/dbpid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/dbpid.cpp -------------------------------------------------------------------------------- /src/fstats/dbpid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/dbpid.h -------------------------------------------------------------------------------- /src/fstats/dbstorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/dbstorage.h -------------------------------------------------------------------------------- /src/fstats/fstats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/fstats.h -------------------------------------------------------------------------------- /src/fstats/fstats.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/fstats.pro -------------------------------------------------------------------------------- /src/fstats/fstats.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/fstats.qrc -------------------------------------------------------------------------------- /src/fstats/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/graph.cpp -------------------------------------------------------------------------------- /src/fstats/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/graph.h -------------------------------------------------------------------------------- /src/fstats/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/main.cpp -------------------------------------------------------------------------------- /src/fstats/pid_thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/pid_thread.cpp -------------------------------------------------------------------------------- /src/fstats/pid_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/pid_thread.h -------------------------------------------------------------------------------- /src/fstats/resources/fstats-minimal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/resources/fstats-minimal.png -------------------------------------------------------------------------------- /src/fstats/resources/fstats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/resources/fstats.png -------------------------------------------------------------------------------- /src/fstats/stats_dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/stats_dialog.cpp -------------------------------------------------------------------------------- /src/fstats/stats_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/fstats/stats_dialog.h -------------------------------------------------------------------------------- /src/man/firejail-ui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/man/firejail-ui.txt -------------------------------------------------------------------------------- /src/man/firetools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/src/man/firetools.txt -------------------------------------------------------------------------------- /todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netblue30/firetools/HEAD/todo --------------------------------------------------------------------------------