├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── Screenshot.png ├── main.ts ├── manifest.json ├── package.json ├── rollup.config.js ├── styles.css ├── tsconfig.json ├── versions.json └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mgmeyers 2 | custom: https://www.buymeacoffee.com/mgme 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/Screenshot.png -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/rollup.config.js -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- 1 | { 2 | "1.0.0": "0.12.3" 3 | } 4 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgmeyers/obsidian-electron-window-tweaker/HEAD/yarn.lock --------------------------------------------------------------------------------