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.
- Host: GitHub
- URL: https://github.com/jordan-haidee/still
- Owner: Jordan-Haidee
- Created: 2025-01-09T13:31:31.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-18T11:46:35.000Z (over 1 year ago)
- Last Synced: 2025-03-02T19:16:50.258Z (over 1 year ago)
- Topics: alarm, linux, process, rust, shell, windows
- Language: Rust
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# 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
```