├── .gitignore ├── LICENSE ├── README.md ├── assets └── terminator-hostwatch.png ├── files └── usr │ └── share │ └── terminator │ └── terminatorlib │ └── plugins │ └── host_watch.py └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | .idea 3 | *.iml 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GratefulTony/TerminatorHostWatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GratefulTony/TerminatorHostWatch/HEAD/README.md -------------------------------------------------------------------------------- /assets/terminator-hostwatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GratefulTony/TerminatorHostWatch/HEAD/assets/terminator-hostwatch.png -------------------------------------------------------------------------------- /files/usr/share/terminator/terminatorlib/plugins/host_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GratefulTony/TerminatorHostWatch/HEAD/files/usr/share/terminator/terminatorlib/plugins/host_watch.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GratefulTony/TerminatorHostWatch/HEAD/install.sh --------------------------------------------------------------------------------