├── .github ├── screenshot-busy.png └── screenshot-floating.png ├── LICENSE ├── README.md └── chrome └── userChrome.css /.github/screenshot-busy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davquar/tilefox/e6dff919bca298e3528ee73bd06d2e2c9694902c/.github/screenshot-busy.png -------------------------------------------------------------------------------- /.github/screenshot-floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davquar/tilefox/e6dff919bca298e3528ee73bd06d2e2c9694902c/.github/screenshot-floating.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Davide Quaranta 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 | # TileFox 2 | 3 | TileFox is a minimalistic **userChrome.css** theme for Mozilla Firefox, that: 4 | 5 | * Integrates well with **tiling window managers**. 6 | * Respects the system's **GTK+ theme**. 7 | 8 | ![Floating window screenshot](.github/screenshot-floating.png) 9 | ![Busy screenshow](.github/screenshot-busy.png) 10 | 11 | _Screenshots made with [i3-gaps](https://github.com/Airblader/i3) as WM and [Gruvbox GTK](https://github.com/Fausto-Korpsvart/Gruvbox-GTK-Theme) theme._ 12 | 13 | ## Installation 14 | 15 | Just download [`userChrome.css`](chrome/userChrome.css) in your `$HOME/.mozilla/firefox//chrome/`. 16 | 17 | ## Keyboard shortcuts 18 | 19 | Since if you install this theme you are probably using a tiling window manager, here we have some useful keyboard shortcuts that Firefox supports: 20 | 21 | | Shortcut | Action | 22 | | ---------------- | ---------------- | 23 | | `Ctrl`+`Q` | Close Firefox | 24 | | `Ctrl`+`R` | Refresh | 25 | | `Ctrl`+`T` | New tab | 26 | | `Ctrl`+`W` | Close tab | 27 | | `Ctrl`+`Alt`+`T` | Reopen tab | 28 | | `Ctrl`+`PgUp` | Previous tab | 29 | | `Ctrl`+`PgDn` | Next tab | 30 | | `Alt`+`Left` | Go back | 31 | | `Alt`+`Right` | Go forward | 32 | | `Ctrl`+`K` | Focus URL bar | 33 | | `Ctrl`+`L` | Focus search bar | -------------------------------------------------------------------------------- /chrome/userChrome.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --tab-border-radius: 0 !important; 3 | --tab-block-margin: 0 !important; 4 | } 5 | 6 | :root[uidensity="compact"] { 7 | --tab-min-height: 20px !important; 8 | --tab-border-radius: 0 !important; 9 | --tab-block-margin: 0 !important; 10 | } 11 | 12 | #tabbrowser-tabs:not([secondarytext-unsupported]) .tab-label-container { 13 | height: initial !important; 14 | } 15 | --------------------------------------------------------------------------------