├── LICENSE ├── README.md ├── installer32.bat ├── installer64.bat └── macOS Graphic.heic /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Firefox CSS Themers 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Monterey-Fox (Currently under maintenance) 2 | A theme designed to replicate the Safari from the Monterey update. 3 | 4 | Made by [Alfarex Guy](https://github.com/alfarexguy2019) 5 | 6 | This theme is still in beta, so using it might brick your installation. 7 | 8 | ## Tested on: 9 | 10 | - Linux (Arch Distro) 11 | - MacOS Monterey 12 | 13 | 14 | 15 | ## Features replicated: 16 | 17 | - URL Bar in Tab 18 | - The menus and colors. 19 | - Change of color with tabs (still in beta) 20 | 21 | ## Perks: 22 | 23 | - Transparency fixes. 24 | - Works better on macOS than actual Safari. 25 | 26 | ## Release Date: 27 | 28 | The theme is supposed to release this week, but other development may delay it. 29 | -------------------------------------------------------------------------------- /installer32.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo This script works for both 32-Bit and 64-Bit CPUs. If you want to download the 64-Bit version, go here: https://github.com/FirefoxCSSThemers/WhiteSur-Tweaked/raw/main/installer64.bat 3 | timeout 5 4 | echo Searching for already installed packages... 5 | cd C:\ 6 | PowerShell -Command "Invoke-WebRequest https://raw.githubusercontent.com/FirefoxCSSThemers/WhiteSur-Tweaked/main/isAppInstalled32.ps1 -Outfile isAppInstalled32.ps1" 7 | -------------------------------------------------------------------------------- /installer64.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | echo This script will only work with 64-Bit CPUs. If you downloaded this script by error, please press Ctrl+C within 5 seconds and hit 'y' to close it. 3 | timeout 5 > nul 4 | echo Searching for already installed packages... 5 | cd C:\ 6 | PowerShell -Command "Invoke-WebRequest https://raw.githubusercontent.com/FirefoxCSSThemers/WhiteSur-Tweaked/main/isAppInstalled64.ps1 -Outfile isAppInstalled64.ps1" -------------------------------------------------------------------------------- /macOS Graphic.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirefoxCSSThemers/Monterey-Fox/5649b0d103e34b7ec437e1286e8cb4102d4f950d/macOS Graphic.heic --------------------------------------------------------------------------------