Skip to content

Commit

Permalink
[feat] Initialize repo
Browse files Browse the repository at this point in the history
Add basic files.
  • Loading branch information
zincnode committed Jun 18, 2023
1 parent 3cc02ae commit 49e9802
Show file tree
Hide file tree
Showing 13 changed files with 2,762 additions and 1 deletion.
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts"
]
}
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
out
dist
node_modules
.vscode/
.vscode-test/
*.vsix
10 changes: 10 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.vscode/**
.vscode-test/**
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map
**/*.ts
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log

All notable changes to the "h-bar" extension will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

- Initial release
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
# H-Bar
# H-Bar

H-Bar means *Hydrogen-Bar*. It is a VSCode extension to show system HW/SW stats in VSCode status bar.

## Features

- Show CPU usage rate
- Show RAM usage
- Show uptime
- Show Docker info

## Acknowledgements

- [vscode-stats-bar](https://github.com/njzydark/vscode-stats-bar)
- [systeminformation](https://github.com/sebhildebrandt/systeminformation)
Loading

0 comments on commit 49e9802

Please sign in to comment.