No description
Find a file
2025-04-25 11:36:02 -07:00
additions corrected folder name 2025-04-23 00:08:47 -07:00
assets update to use thin LTO 2025-04-23 15:25:27 -07:00
bundle remove mac, windows fontconfigs 2025-04-23 18:30:20 -07:00
patches hardcode fonts in font patch 2025-04-25 11:08:54 -07:00
scripts package hardened-malloc 2025-04-25 11:21:19 -07:00
settings replace DDG with Brave Search 2025-04-25 11:36:02 -07:00
.gitattributes remove tests 2025-04-21 21:51:51 -07:00
.gitignore update branding 2025-04-21 20:41:38 -07:00
libhardened_malloc.so package hardened-malloc 2025-04-25 11:21:19 -07:00
LICENSE Initial release v128.0-1 2024-07-26 06:49:20 -05:00
Makefile remove docker dependency wording 2025-04-23 15:48:30 -07:00
multibuild.py remove unnecessary code 2025-04-25 11:21:41 -07:00
README.md Update README.md 2025-04-22 16:24:20 -07:00
upstream.sh Separate versioning for private patch revisions 2025-03-15 05:50:35 -05:00

Ωfox

General-use browser based on Camoufox

Features

  • Reversions of Camoufox defaults for general-purpose use:

    • Re-enabled CSS animations
    • Removed cursor highlighter
    • Re-enabled stock Firefox features that do not make outside connections
    • Search engine usage allowed
    • etc.
  • Security enhancements:

    • Improved process isolation
    • Weak ciphers and outdated TLS versions disabled by default
    • Hardened compilation configuration
    • Bundled with hardened_malloc
    • Uses Mullvad's adblock DNS-over-HTTPS to provide Encrypted Client Hello
    • JIT disabled by default

Building

First, clone this repository with Git:

git clone --depth 1 https://forge.fsky.io/oneflux/omegafox
cd omegafox

Next, build the Ωfox source code with the following command:

make dir

After that, you have to bootstrap your system to be able to build Ωfox. You only have to do this one time. It is done by running the following command:

make bootstrap

Finally you can build and package Ωfox using the following command:

python3 multibuild.py --target linux --arch x86_64 arm64 i686
CLI Parameters
Options:
  -h, --help            show this help message and exit
  --target {linux} [{linux} ...]
                        Target platform to build (Linux only)
  --arch {x86_64,arm64,i686} [{x86_64,arm64,i686} ...]
                        Target architectures to build for each platform
  --bootstrap           Bootstrap the build system
  --clean               Clean the build directory before starting

Example:
$ python3 multibuild.py --target linux --arch x86_64 arm64

Thanks