├── .github └── FUNDING.yml ├── .gitignore ├── AGENTS.md ├── CHANGELOG.md ├── README.md ├── electron ├── main.js └── preload.js ├── package.json ├── resources ├── appLogo.icns ├── appLogo.png ├── appLogoSmaller.icns ├── appLogoSmaller.png ├── appLogoWithBackground_1200x630px.png ├── screenshot.png └── screenshot2.png ├── scripts └── rebuild-pty.js └── src ├── index.html ├── renderer.js └── styles.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: bujna94 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/README.md -------------------------------------------------------------------------------- /electron/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/electron/main.js -------------------------------------------------------------------------------- /electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/electron/preload.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/package.json -------------------------------------------------------------------------------- /resources/appLogo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/appLogo.icns -------------------------------------------------------------------------------- /resources/appLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/appLogo.png -------------------------------------------------------------------------------- /resources/appLogoSmaller.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/appLogoSmaller.icns -------------------------------------------------------------------------------- /resources/appLogoSmaller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/appLogoSmaller.png -------------------------------------------------------------------------------- /resources/appLogoWithBackground_1200x630px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/appLogoWithBackground_1200x630px.png -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /resources/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/resources/screenshot2.png -------------------------------------------------------------------------------- /scripts/rebuild-pty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/scripts/rebuild-pty.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/src/index.html -------------------------------------------------------------------------------- /src/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/src/renderer.js -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bujna94/infinityTerminal/HEAD/src/styles.css --------------------------------------------------------------------------------