├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── requirements.txt ├── setup.cfg ├── sshot.png └── start_session.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled 2 | __pycache__/ 3 | *.py[cod] 4 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/setup.cfg -------------------------------------------------------------------------------- /sshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/sshot.png -------------------------------------------------------------------------------- /start_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muchzill4/kitty-session/HEAD/start_session.py --------------------------------------------------------------------------------