Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/migueravila/SimpleFox
🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.
https://github.com/migueravila/SimpleFox
firefox firefox-css firefox-theme firefox-tweaks keyboard-shortcuts minimalist unixporn user-interface userchrome userchrome-styles userchromecss userstyles
Last synced: about 2 months ago
JSON representation
🦊 A Userstyle theme for Firefox minimalist and Keyboard centered.
- Host: GitHub
- URL: https://github.com/migueravila/SimpleFox
- Owner: migueravila
- License: gpl-3.0
- Created: 2020-06-07T21:04:16.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T18:56:19.000Z (over 2 years ago)
- Last Synced: 2024-10-23T13:34:24.260Z (about 2 months ago)
- Topics: firefox, firefox-css, firefox-theme, firefox-tweaks, keyboard-shortcuts, minimalist, unixporn, user-interface, userchrome, userchrome-styles, userchromecss, userstyles
- Language: CSS
- Homepage:
- Size: 18.8 MB
- Stars: 1,766
- Watchers: 15
- Forks: 119
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
- stars - migueravila/SimpleFox
- awesome-starred-test - migueravila/SimpleFox - 🦊 A Userstyle theme for Firefox minimalist and Keyboard centered. (CSS)
- awesome-linux-ricing - SimpleFox
README
![image](assets/head.png)
## 👇 Index
- [👇 Index](#-index)
- [💫 Features](#-features)
- [⚙️ Installation](#️-installation)
- [🚀 Usage](#-usage)
- [🎨 Customization](#-customization)
- [💛 Colors](#-colors)
- [🚧 URL Bar](#-url-bar)
- [🔧 Recommended settings](#-recommended-settings)
- [🍱 Startpage](#-startpage)
- [⛲ One line version: Cascade](#-one-line-version-cascade)
- [⚠️ Notes](#️-notes)## 💫 Features
- Supports Firefox **Proton UI**
- **As simple as you want**: All code is commented!
- **Variables** for custom colors: [Customization](#-customization)
- **Keyboard** Centered Design! Here you can read about the shortcuts: [Usage](#-usage)## ⚙️ Installation
1. In the searchbar type `about:config`. A dialog will be shown to you. Press the **I accept the risk** button.
2. Search for **`toolkit.legacyUserProfileCustomizations.stylesheets`**, **`layers.acceleration.force-enabled`**, **`gfx.webrender.all`**, and **`svg.context-properties.content.enabled`**. Change them to **True**
3. Go to your Firefox profile:
- If you're on Linux: `$HOME/.mozilla/firefox/XXXXXXX.default-release/`
- If you're on Windows: `C:\Users\\AppData\Roaming\Mozilla\Firefox\Profiles\XXXXXXX.default-XXXXXX`
- If you're on MacOS: `Users//Library/Application Support/Firefox/Profiles/XXXXXXX.default-XXXXXXX`
4. Move the `chrome` folder into the directory.
5. Make all the customizations you want [here](#-customization).
6. Enjoy!## 🚀 Usage
This userstyle was made for a keyboard centered usage, like Tilling Window Manager users or just cool people that loves them! Use the following for a better experience:
- `Alt` You can access to the global menu for an extended options you need
- `Alt + Left Arrow` You can go Back
- `Alt + Right Arrow` You can go Forward
- `Ctrl + L` focuses the Navbar
- `Ctrl + B` shows you the Bookmarks
- `Ctrl + H` shows you the History Bar
- `Ctrl + T` Opens a new Tab
- `Ctrl + W` Closes a Tab
- `Ctrl + Shift + T` Re-opens a tab that you just closed
- `Ctrl + R` Refresh the page you're on
- `Ctrl + Shift + A` Quick open for Add-Ons## 🎨 Customization
All the configuration will be managed in the `userChrome.css` file. And also all the code is commented so you can easily change values and colors as you like.
### 💛 Colors
In this section of the code you can change the colors, there's a window color and a tabs / urlbar color.
```css
:root {
--sfwindow: #19171a;
--sfsecondary: #201e21;
}```
### 🚧 URL Bar
![urlbardifference](assets/urlbar.png)
You can show and hide the URL Bar (See the difference above) by commenting / uncomment the following section of code:
```css
/*─────────────────────────────*/
/* Comment this section if you */
/* want to show the URL Bar */
/*─────────────────────────────*/.urlbarView {
display: none !important;
}/*─────────────────────────────*/
```
### 🔧 Recommended settings
- Right click on toolbar -> Customize.
- Remove (as you want) all the removable elements including extensions, drag space and buttons.
- Install the [SimpleFox](https://addons.mozilla.org/en-US/firefox/addon/simplerentfox/) add on theme.### 🍱 Startpage
If anyone has the doubt, in almost all of the screenshots you can see a Startpage made for it. It's called [Bento 🍱](https://github.com/MiguelRAvila/Bento) and It's another project I made. It fits with the Firefox theme because It's done with the same principles: Minimalist, Simple and Elegant.
![bento](https://github.com/migueravila/Bento/blob/master/assets/img/subheader.png)
### ⛲ One line version: Cascade
[Andreas Grafen](https://github.com/andreasgrafen/) has made an awesome work making a One Line theme inspired by SimpleFox. As it's work is awesome and allows you customization I can totally recomend it. Here you can find his repo: [Link](https://github.com/andreasgrafen/cascade)
![image](assets/oneline.png)
## ⚠️ Notes- As Firefox changed at version 88 introducing the Proton UI, all the old files and configurations moved to [oldFirefox](https://github.com/migueravila/SimpleFox/tree/oldFirefox) branch.
- Windows and MacOS are currently tested but may not be in the future.
- Some custom themes (And GTK themes in Linux) may break context menus.