autosway 0.3.0

Automation program
Documentation
# autosway

[![Please don't upload to GitHub](https://nogithub.codeberg.page/badge.svg)](https://nogithub.codeberg.page)

UNIX automation program because shell scripts are boring.

Current release: 0.3.0

## Usage

autosway is simple to use.

Automations are stored in `~/.config/autosway/knifes`.

They're called knifes because they are your personal
[Swiss Army knifes](https://en.wikipedia.org/wiki/Swiss_Army_knife#Cultural_impact)!

To run a knife you simply use `$ autosway run KNIFE`

Knifes are written in [Lua](https://lua.org), a simple knife can be written like this:

```lua
as.os.exec("ls", {
    "-alh"
})
```

API Documentation can be found [here](./API.md).