Skip to content

Commit

Permalink
flesh out badges
Browse files Browse the repository at this point in the history
- clean up PowerShell script
- swap out badges, change style
  • Loading branch information
Jonathan-Zollinger committed Jan 3, 2024
1 parent 965277d commit 20523d1
Showing 1 changed file with 12 additions and 26 deletions.
38 changes: 12 additions & 26 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[![build badge]][build link] [![GitHub last commit]][commit history]
[![GitHub commit activity]][commit frequency]
[![build badge]][build link]
[![GitHub commit activity]][commit frequency] [![issues badge]][open issues link] ![open issues for next release badge and link]


## Summary

Expand All @@ -18,13 +19,12 @@ Microfetch is an improved version of neofetch written with [micronaut] and built
<li>Move executable to dedicated directory, ie <code>C:\Program Files\threshr\</code></li>
<li>Add directory to your PATH <details><summary>(I like to add this snippet to my ps profile)</summary>

Assuming you've added the microfetch binary to `C:\Program Files\microfetch\`,

```PowerShell
# assuming you've added the microfetch binary to C:\Program Files\microfetch\
"C:\Program Files\microfetch\" |
if (!($env:Path -like "*$_*"))
{
$env:Path = "$( $env:Path );$_"
if ( ! ($env:Path -like "*$_*" ) ) {
$env:Path = "$( $env:Path ); $_"
}
```

Expand All @@ -43,29 +43,15 @@ ___
Take a whack at any [open issues]!


[build badge]:https://img.shields.io/github/actions/workflow/status/Jonathan-Zollinger/Microfetch/gradle.yml?style=plastic&logo=github&label=Gradle%20Build&link=https%3A%2F%2Fgithub.com%2FJonathan-Zollinger%2FMicrofetch%2Factions%20build-status%20

[build badge]:https://img.shields.io/github/actions/workflow/status/Jonathan-Zollinger/Microfetch/gradle.yml?style=for-the-badge&logo=github&label=Gradle%20Build&link=https%3A%2F%2Fgithub.com%2FJonathan-Zollinger%2FMicrofetch%2Factions%20build-status%20
[build link]:https://github.com/Jonathan-Zollinger/Microfetch/actions/workflows/maven.yml

[open issues]:https://github.com/Jonathan-Zollinger/Microfetch/issues"open-issues"

[//]: # ([contributing]:Contributing.md)

[GitHub code size in bytes]:https://img.shields.io/github/languages/code-size/Jonathan-Zollinger/Microfetch?style=plastic%20project-size%20

[issues badge]:https://img.shields.io/github/issues/jonathan-zollinger/microfetch?style=for-the-badge
[open issues link]:https://github.com/Jonathan-Zollinger/Microfetch/issues"open-issues"
[open issues for next release badge and link]:https://img.shields.io/github/milestones/issues-open/jonathan-zollinger/microfetch/1?style=for-the-badge&label=remaining%20issues%20for%20release%20v0.0.1&link=https%3A%2F%2Fgithub.com%2FJonathan-Zollinger%2Fmicrofetch%2Fmilestones
[download link]:https://github.com/Jonathan-Zollinger/Microfetch/archive/refs/heads/main.zip

[license]:https://img.shields.io/github/license/Jonathan-Zollinger/Microfetch?style=plastic"GPL-3-License"

[license]:https://img.shields.io/github/license/Jonathan-Zollinger/Microfetch?style=for-the-badge"GPL-3-License"
[//]: # ([license file]:LICENSE)

[GitHub last commit]:https://img.shields.io/github/last-commit/Jonathan-Zollinger/Microfetch/main?style=plastic%20most-recent-commit

[commit history]:https://github.com/Jonathan-Zollinger/Microfetch/commits/main

[GitHub commit activity]:https://img.shields.io/github/commit-activity/y/Jonathan-Zollinger/Microfetch?style=plastic"commit-frequency"

[GitHub commit activity]:https://img.shields.io/github/commit-activity/w/jonathan-zollinger/microfetch?style=for-the-badge
[commit frequency]:https://github.com/Jonathan-Zollinger/Microfetch/graphs/code-frequency

[micronaut]:https://micronaut.io/
[graalvm]:https://micronaut.io/2019/04/26/micronaut-and-graalvm-the-ultimate-recipe-for-fast-lightweight-powerful-apps/

0 comments on commit 20523d1

Please sign in to comment.