An open API service indexing awesome lists of open source software.

https://github.com/jordan-haidee/still

Still is a simple process alarm. It make specified process sleep now, and wake up after a period of time.
https://github.com/jordan-haidee/still

alarm linux process rust shell windows

Last synced: 3 months ago
JSON representation

Still is a simple process alarm. It make specified process sleep now, and wake up after a period of time.

Awesome Lists containing this project

README

          

![logo](assets/logo.svg)
# Still
Still is a simple process alarm. It make specified process sleep now, and wake up
after a period of time.

## Usage
```shell
still $pid $duration
```
some duration examples:
```
still 19604 30 # make process 19604 sleep 30 seconds
still 19604 30s # make process 19604 sleep 30 seconds
still 19604 30m # make process 19604 sleep 30 minites
still 19604 30h # make process 19604 sleep 30 hours
```
## Install
### Binaries
Just download from releases. On Windows, two binaries must be placed at the some folder.
### Build from source
#### Windows
```powershell
./build.ps1
```
#### Linux
```bash
bash ./build.sh
```