35 lines
1.0 KiB
Markdown
35 lines
1.0 KiB
Markdown
### EAF System Monitor
|
|
<p align="center">
|
|
<img width="800" src="./screenshot.png">
|
|
</p>
|
|
|
|
System Monitor application for the [Emacs Application Framework](https://github.com/emacs-eaf/emacs-application-framework).
|
|
|
|
### Load application
|
|
[Install EAF](https://github.com/emacs-eaf/emacs-application-framework#install) first, then add below code in your emacs config:
|
|
|
|
```Elisp
|
|
(add-to-list 'load-path "~/.emacs.d/site-lisp/emacs-application-framework/")
|
|
(require 'eaf)
|
|
(require 'eaf-system-monitor)
|
|
```
|
|
|
|
### Dependency List
|
|
|
|
| Package | Description |
|
|
| :-------- | :------ |
|
|
| python-psutil | Retrieving information on running processes and system utilization |
|
|
|
|
### The keybinding of EAF System Monitor.
|
|
|
|
| Key | Event |
|
|
| :---- | :------ |
|
|
| `<f12>` | open_devtools |
|
|
| `C-n` | js_scroll_up |
|
|
| `C-p` | js_scroll_down |
|
|
| `C-v` | js_scroll_up_page |
|
|
| `M-v` | js_scroll_down_page |
|
|
| `M-<` | js_scroll_to_begin |
|
|
| `M->` | js_scroll_to_bottom |
|
|
|