Skip to content

Commit

Permalink
chore(goreleaser): adds goreleaser support and completes readme
Browse files Browse the repository at this point in the history
  • Loading branch information
mJehanno committed Apr 19, 2022
1 parent 5865f78 commit b8c456d
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@

# Dependency directories (remove the comment below to include it)
# vendor/

dist/
32 changes: 32 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is an example .goreleaser.yml file with some sensible defaults.
# Make sure to check the documentation at https://goreleaser.com
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- darwin
archives:
- replacements:
darwin: Darwin
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: launch-tui
homepage: https://github.com/wecraftforfun/homebrew-tools
tap:
owner: wecraftforfun
name: homebrew-tools
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,24 @@

Launch-tui is a small TUI app to manage launchD

## Install

You can either install it by donwloading the archive, uncompress it and add the folder to your path or by using homebrew :

`brew tap wecraftforfun/tools`

then

`brew install launch-tui`

## Features

### Available

- You can load and unload an Agent, list them (it's looking for agent in your `~/Library/LaunchAgents` folder).
- You can start or stop an agent
- You can add a new agent using a user-friendly form that will create your `.plist` for you.
- You can delete an agent (it will erase the associated `.plist` file from your disk)

### Planned

- You can add a new agent using a user-friendly form that will create your `.plist` for you.

0 comments on commit b8c456d

Please sign in to comment.