Skip to content

Commit 46fb6df

Browse files
authored
Merge pull request #6 from unixorn/add-install-instructions
Forgot to add the install instructions
2 parents 28cbd42 + 1519131 commit 46fb6df

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--- Provide a general summary of your changes in the Title above -->
2+
3+
# Description
4+
5+
<!--- Describe your changes in detail -->
6+
7+
# Type of changes
8+
9+
# Checklist
10+
11+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. [x] -->
12+
<!--- If you're unsure about any of these, don't hesitate to ask. I'm happy to help! -->
13+
14+
- [ ] All new and existing tests pass.
15+
- [ ] Any scripts added use `#!/usr/bin/env interpreter` instead of potentially platform-specific direct paths (`#!/bin/sh` and `#!/bin/bash` are allowed exceptions)
16+
- [ ] Scripts are marked executable
17+
- [ ] Scripts _do not_ have a language file extension unless they are meant to be sourced and not run standalone. No one should have to know if a script was written in bash, python, ruby or whatever. Not including file extensions makes it easier to rewrite the script in another language later without having to change every reference to the previous version.
18+
- [ ] I have confirmed that the link(s) in my PR are valid.
19+
20+
# License Acceptance
21+
22+
- [ ] This repository is Apache version 2.0 licensed (some scripts may have alternate licensing inline in their code) and by making this PR, I am contributing my changes to the repository under the terms of the Apache 2 license.

Diff for: LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright [2021] Joe Block <[email protected]>
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Diff for: Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
i: install
2+
install:
3+
cp lima-plugin ~/Library/Application\ Support/xbar/plugins/lima-plugin.10s
4+
5+
l: lint
6+
lint:
7+
shellcheck lima-plugin

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This plugin is compatible with [xbar](https://xbarapp.com/) and [SwiftBar](https
1010

1111
## Installation
1212

13+
Copy `lima-plugin` to `~/Library/Application\ Support/xbar/plugins/lima-plugin.30s`, or run `make install`
1314
### Dependencies
1415

1516
- [xbar](https://xbarapp.com/) - Allows you to make custom menubar apps with just scripts

0 commit comments

Comments
 (0)