├── .gitignore ├── assets ├── dark.png ├── light.png └── dark-without-left-sidebar.png ├── store-screenshot.png ├── manifest.json ├── README.md ├── snippets ├── Instruction.md └── iB Writer Snippet.css └── LICENSE /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /assets/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whereiswhere/iB-Writer/HEAD/assets/dark.png -------------------------------------------------------------------------------- /assets/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whereiswhere/iB-Writer/HEAD/assets/light.png -------------------------------------------------------------------------------- /store-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whereiswhere/iB-Writer/HEAD/store-screenshot.png -------------------------------------------------------------------------------- /assets/dark-without-left-sidebar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whereiswhere/iB-Writer/HEAD/assets/dark-without-left-sidebar.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "iB Writer", 3 | "version": "1.0.9", 4 | "minAppVersion": "1.1.16", 5 | "author": "whereiswhere", 6 | "authorUrl": "https://toablind.horse" 7 | } 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # iB-Writer 2 | 3 | ## About 4 | iB Writer is a [Obsidian](https://obsidian.md/) theme inspired by [iA Writer](https://ia.net/writer) 5 | 6 | ## New 7 | (2024-04-12): Removed list indicator in preview mode 8 | 9 | ## Screenshots 10 | ![Light Mode Screenshot](assets/light.png) 11 | ![Dark Mode Screenshot](assets/dark.png) 12 | ![Dark Mode Screenshot with Left Sidebar Hidden](assets/dark-without-left-sidebar.png) 13 | -------------------------------------------------------------------------------- /snippets/Instruction.md: -------------------------------------------------------------------------------- 1 | ## Instruction: 2 | 1. Put the __iB Writer Snnipte.css__ file into the `.obsidian/snippets` folder 3 | 2. Then turn on the toggle on Obsidan app at the end of the `Appearance` Option in Settings 4 | 5 | __iB Writer Snippets.css__ file let you: 6 | 1. hide the left Ribbon Bar 7 | 2. hide the posts list Nav Header 8 | 3. let editor window spreads to 100% if use Stack Tabs, could also make all opened editor windows side by side with equal width. -------------------------------------------------------------------------------- /snippets/iB Writer Snippet.css: -------------------------------------------------------------------------------- 1 | /* ----------- */ 2 | /* Hide Left Ribbon Bar */ 3 | .workspace-ribbon { 4 | display: none; 5 | } 6 | 7 | /* ----------- */ 8 | /* Hide Post List Nav Header */ 9 | .nav-header { 10 | display: none; 11 | } 12 | .is-hidden-frameless:not(.is-fullscreen) 13 | .workspace-tabs.mod-top-left-space 14 | .workspace-tab-header-container:before { 15 | width: 44px; 16 | position: relative; 17 | } 18 | 19 | /* ----------- */ 20 | /* make active editor window width spreads to max width when use stack tabs */ 21 | /* or, if you want to make all stacked windows open side by side, change the value 100% to 100px */ 22 | 23 | body { 24 | --tab-stacked-pane-width: 100%; 25 | } 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 whereiswhere 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 | --------------------------------------------------------------------------------