├── .gitignore ├── LICENSE ├── LICENSES └── LICENSE-MPL2.0 ├── README.md ├── index.js ├── linux-screen.png ├── package.json ├── titlebar ├── caption-buttons.svg ├── close.svg ├── maximize.svg ├── minimize.svg ├── restore.svg └── titlebar.css └── windows-screen.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/LICENSE-MPL2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/LICENSES/LICENSE-MPL2.0 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/index.js -------------------------------------------------------------------------------- /linux-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/linux-screen.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/package.json -------------------------------------------------------------------------------- /titlebar/caption-buttons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/caption-buttons.svg -------------------------------------------------------------------------------- /titlebar/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/close.svg -------------------------------------------------------------------------------- /titlebar/maximize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/maximize.svg -------------------------------------------------------------------------------- /titlebar/minimize.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/minimize.svg -------------------------------------------------------------------------------- /titlebar/restore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/restore.svg -------------------------------------------------------------------------------- /titlebar/titlebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/titlebar/titlebar.css -------------------------------------------------------------------------------- /windows-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Menci/electron-titlebar/HEAD/windows-screen.png --------------------------------------------------------------------------------