Compare commits
33 Commits
Author | SHA1 | Date | |
---|---|---|---|
e758078a8d | |||
e8bf1e0d81 | |||
a8c5f3a694 | |||
8d47e4c4f5 | |||
f9102eb707 | |||
139568415e | |||
b74bf3be3c | |||
07fbd43cbe | |||
ac9696f38a | |||
582a54617e | |||
4a59b8b1d3 | |||
338f29272c | |||
d2d6317b4e | |||
ae155b2d7e | |||
c878447c45 | |||
c451237ab9 | |||
b4fb652727 | |||
a23827355a | |||
be030532ea | |||
0656a1ff34 | |||
40841a82a2 | |||
6f93d8d87c | |||
da7ca2029c | |||
1756478ef7 | |||
4d4c5b2f16 | |||
a57ce3dc94 | |||
bd9533182f | |||
9d8678e421 | |||
5b42a1ef05 | |||
f88eeafafa | |||
90d8191e54 | |||
b65e62cd8c | |||
a7b1d6ab84 |
@ -6,7 +6,6 @@ pipeline:
|
||||
build:
|
||||
image: node:16
|
||||
commands:
|
||||
- apt update && apt install -y ruby ruby-dev && gem install sass
|
||||
- npm install
|
||||
- npm run grunt
|
||||
|
||||
|
@ -4,7 +4,7 @@ module.exports = function(grunt) {
|
||||
|
||||
// Project configuration.
|
||||
grunt.initConfig({
|
||||
sass: {
|
||||
'dart-sass': {
|
||||
dist: {
|
||||
options: {
|
||||
style: 'compressed'
|
||||
@ -69,7 +69,7 @@ module.exports = function(grunt) {
|
||||
},
|
||||
css: {
|
||||
files: ['assets/sass/*.sass'],
|
||||
tasks: ['sass'],
|
||||
tasks: ['dart-sass'],
|
||||
options: {
|
||||
atBegin: true,
|
||||
spawn: false
|
||||
@ -96,12 +96,12 @@ module.exports = function(grunt) {
|
||||
|
||||
// Load task plugins
|
||||
grunt.loadNpmTasks('grunt-twig-render');
|
||||
grunt.loadNpmTasks('grunt-contrib-sass');
|
||||
grunt.loadNpmTasks('grunt-dart-sass');
|
||||
grunt.loadNpmTasks('grunt-contrib-coffee');
|
||||
grunt.loadNpmTasks('grunt-contrib-copy');
|
||||
grunt.loadNpmTasks('grunt-contrib-watch');
|
||||
|
||||
// Default task(s).
|
||||
grunt.registerTask('default', ['twigRender', 'sass', 'coffee', 'copy']);
|
||||
grunt.registerTask('default', ['twigRender', 'dart-sass', 'coffee', 'copy']);
|
||||
|
||||
};
|
||||
|
@ -1,26 +1,27 @@
|
||||
si = require('systeminformation')
|
||||
|
||||
window.onload = () ->
|
||||
window.addEventListener('load', () ->
|
||||
# Grab the static CPU information
|
||||
si.cpu()
|
||||
.then((data) ->
|
||||
document.getElementById('cpuInfo').innerText = data.brand
|
||||
document.getElementById('cpuCores').innerText = data.physicalCores
|
||||
document.getElementById('cpuThreads').innerText = data.cores
|
||||
document.getElementById('cpuClock').innerText = data.speed
|
||||
console.log(data)
|
||||
document.getElementById('cpuClockBase').innerText = data.speed
|
||||
document.getElementById('cpuClockBoost').innerText = data.speedMax
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
||||
# Start the CPU temperature loop
|
||||
setCpuTemp()
|
||||
, false)
|
||||
|
||||
setCpuTemp = () ->
|
||||
si.cpuTemperature()
|
||||
.then((data) ->
|
||||
document.getElementById('cpuTemp').innerText = data.main
|
||||
console.log(data)
|
||||
document.getElementById('cpuTempDisplay').children.item(0).style.height = ((100 - parseFloat(data.main)) + '%')
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
@ -1,10 +1,39 @@
|
||||
si = require('systeminformation')
|
||||
|
||||
window.onload = () ->
|
||||
window.addEventListener('load', () ->
|
||||
# Set the option selector to trigger an info grab on element change
|
||||
document.getElementById('gpuSelector').addEventListener('change', () ->
|
||||
updateGpuInfo(@value)
|
||||
)
|
||||
|
||||
# Load GPUs into the selector
|
||||
loadGpus()
|
||||
|
||||
# Run the updateGpuInfo function with the default value of 0
|
||||
updateGpuInfo()
|
||||
, false)
|
||||
|
||||
loadGpus = () ->
|
||||
si.graphics()
|
||||
.then((data) ->
|
||||
document.getElementById('gpuInfo').innerText = data.controllers[0].model
|
||||
console.log(data)
|
||||
i = 0
|
||||
while i < data.controllers.length
|
||||
optionElem = document.createElement('option')
|
||||
optionElem.innerText = data.controllers[i].model
|
||||
optionElem.setAttribute('value', i)
|
||||
document.getElementById('gpuSelector').appendChild(optionElem)
|
||||
i++
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
||||
updateGpuInfo = (gpuId = 0) ->
|
||||
si.graphics()
|
||||
.then((data) ->
|
||||
document.getElementById('gpuInfo').innerText = data.controllers[gpuId].model
|
||||
document.getElementById('gpuVendor').innerText = data.controllers[gpuId].vendor
|
||||
document.getElementById('gpuVram').innerText = data.controllers[gpuId].vram + 'MB'
|
||||
document.getElementById('gpuBus').innerText = data.controllers[gpuId].bus
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
25
assets/coffee/memory.coffee
Normal file
25
assets/coffee/memory.coffee
Normal file
@ -0,0 +1,25 @@
|
||||
si = require('systeminformation')
|
||||
|
||||
window.addEventListener('load', () ->
|
||||
# Grab the static CPU information
|
||||
si.mem()
|
||||
.then((data) ->
|
||||
document.getElementById('memoryTotal').innerText = @formatBytes(data.total)
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
||||
# Start the CPU temperature loop
|
||||
getMemoryUsage()
|
||||
, false)
|
||||
|
||||
getMemoryUsage = () ->
|
||||
si.mem()
|
||||
.then((data) ->
|
||||
document.getElementById('memoryFree').innerText = @formatBytes(data.free)
|
||||
document.getElementById('memoryActive').innerText = @formatBytes(data.active)
|
||||
document.getElementById('memoryBuffCache').innerText = @formatBytes(data.buffcache)
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
setTimeout(getMemoryUsage, 2000)
|
@ -1,2 +1,45 @@
|
||||
@loadPage = (pagePath) ->
|
||||
window.location.href = pagePath + '.html'
|
||||
shell = require('electron').shell
|
||||
|
||||
document.addEventListener('DOMContentLoaded', () ->
|
||||
links = document.querySelectorAll('a[href^="http"]')
|
||||
i = 0
|
||||
while i < links.length
|
||||
links[i].addEventListener('click', (event) ->
|
||||
event.preventDefault()
|
||||
shell.openExternal(this.href)
|
||||
)
|
||||
i++
|
||||
)
|
||||
|
||||
@openTab = (tab) ->
|
||||
# show the component info that's selected
|
||||
tabs = document.querySelectorAll('.tab-button')
|
||||
displays = document.querySelectorAll('.component-display')
|
||||
i = 0
|
||||
while i < displays.length
|
||||
if displays[i].getAttribute('data-component') == tab
|
||||
displays[i].classList.add('active')
|
||||
tabs[i].classList.add('active')
|
||||
else
|
||||
displays[i].classList.remove('active')
|
||||
tabs[i].classList.remove('active')
|
||||
i++
|
||||
|
||||
@formatBytes = (bytes, decimals = 2) ->
|
||||
if bytes == 0
|
||||
return '0 Bytes'
|
||||
k = 1024
|
||||
dm = if decimals < 0 then 0 else decimals
|
||||
sizes = [
|
||||
'Bytes'
|
||||
'KB'
|
||||
'MB'
|
||||
'GB'
|
||||
'TB'
|
||||
'PB'
|
||||
'EB'
|
||||
'ZB'
|
||||
'YB'
|
||||
]
|
||||
i = Math.floor(Math.log(bytes) / Math.log(k))
|
||||
parseFloat((bytes / k ** i).toFixed(dm)) + ' ' + sizes[i]
|
||||
|
61
assets/coffee/storage.coffee
Normal file
61
assets/coffee/storage.coffee
Normal file
@ -0,0 +1,61 @@
|
||||
si = require('systeminformation')
|
||||
|
||||
window.addEventListener('load', () ->
|
||||
# Set the option selector to trigger an info grab on element change
|
||||
document.getElementById('diskSelector').addEventListener('change', () ->
|
||||
updateDiskInfo(@value)
|
||||
)
|
||||
|
||||
# Load GPUs into the selector
|
||||
loadDisks()
|
||||
|
||||
# Run the updateGpuInfo function with the default value of 0
|
||||
updateDiskInfo()
|
||||
|
||||
# Start running our function to update the drive's temperature
|
||||
setDiskTemp()
|
||||
, false)
|
||||
|
||||
loadDisks = () ->
|
||||
si.diskLayout()
|
||||
.then((data) ->
|
||||
i = 0
|
||||
while i < data.length
|
||||
optionElem = document.createElement('option')
|
||||
diskName = data[i].name + ' (' + data[i].device + ')'
|
||||
optionElem.innerText = diskName
|
||||
optionElem.setAttribute('value', i)
|
||||
document.getElementById('diskSelector').appendChild(optionElem)
|
||||
i++
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
||||
updateDiskInfo = (diskId = 0) ->
|
||||
si.diskLayout()
|
||||
.then((data) ->
|
||||
document.getElementById('diskInfo').innerText = data[diskId].name
|
||||
document.getElementById('diskPath').innerText = data[diskId].device
|
||||
document.getElementById('diskType').innerText = data[diskId].type
|
||||
document.getElementById('diskSize').innerText = formatBytes(data[diskId].size)
|
||||
document.getElementById('diskVendor').innerText = data[diskId].vendor
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
|
||||
setDiskTemp = (diskId = -1) ->
|
||||
selector = document.getElementById('diskSelector')
|
||||
if selector.length < 1
|
||||
return
|
||||
|
||||
if (diskId = -1)
|
||||
diskId = selector.value
|
||||
|
||||
si.diskLayout()
|
||||
.then((data) ->
|
||||
if (data[diskId].temperature)
|
||||
document.getElementById('diskTemp').innerText = data[diskId].temperature
|
||||
).catch((error) ->
|
||||
console.error(error)
|
||||
)
|
||||
setTimeout(setDiskTemp, 2000)
|
@ -1,26 +1,40 @@
|
||||
$tab-bar-height: 50px
|
||||
|
||||
$primary-color: #009688
|
||||
$primary-color-light: lighten($primary-color, 10%)
|
||||
$primary-color-dark: darken($primary-color, 10%)
|
||||
|
||||
$default-transition: all 230ms ease-in-out
|
||||
|
||||
body
|
||||
margin: 0
|
||||
padding: $tab-bar-height 0 90px
|
||||
background: white
|
||||
font-size: 18px
|
||||
|
||||
a
|
||||
color: cornflowerblue
|
||||
transition: all 200ms ease-in-out
|
||||
color: $primary-color
|
||||
transition: $default-transition
|
||||
|
||||
&:hover
|
||||
color: darken(cornflowerblue, 10%)
|
||||
color: $primary-color-light
|
||||
|
||||
input
|
||||
transition: all 200ms ease-in-out
|
||||
transition: $default-transition
|
||||
|
||||
input[type=submit],
|
||||
button
|
||||
background-color: cornflowerblue
|
||||
color: #f0f0f0
|
||||
transition: all 200ms ease-in-out
|
||||
transition: $default-transition
|
||||
|
||||
&:hover
|
||||
background-color: darken(cornflowerblue, 10%)
|
||||
color: white
|
||||
|
||||
.faded-text
|
||||
color: #999
|
||||
|
||||
.u-text-center
|
||||
text-align: center
|
||||
|
||||
@ -28,7 +42,54 @@ button
|
||||
max-width: 1024px
|
||||
|
||||
.container.fluid
|
||||
width: 100%
|
||||
max-width: 100%
|
||||
margin: 0
|
||||
|
||||
#wrapper
|
||||
margin-top: 25px
|
||||
|
||||
#tab-bar
|
||||
position: fixed
|
||||
top: 0
|
||||
left: 0
|
||||
z-index: 10
|
||||
width: 100%
|
||||
height: $tab-bar-height
|
||||
margin: 0
|
||||
padding: 0
|
||||
background: #eee
|
||||
border-bottom: 1px solid #bbb
|
||||
box-shadow: 0 1px 2px rgba(0, 0, 0, .25)
|
||||
|
||||
.container.fluid
|
||||
width: 100%
|
||||
margin-right: 0
|
||||
|
||||
.row
|
||||
display: relative
|
||||
|
||||
.tab-button
|
||||
float: left
|
||||
height: 50px
|
||||
margin: 0
|
||||
background-color: #eee
|
||||
border: none
|
||||
border-right: 1px solid #999
|
||||
border-radius: 0
|
||||
color: #212121
|
||||
font-size: 2rem
|
||||
font-weight: bold
|
||||
transition: $default-transition
|
||||
|
||||
&.active,
|
||||
&:hover
|
||||
background-color: white
|
||||
|
||||
.component-display
|
||||
display: none
|
||||
&.active
|
||||
display: block
|
||||
|
||||
.pageLink
|
||||
text-decoration: none
|
||||
@ -40,6 +101,39 @@ button
|
||||
font-size: 2.5rem
|
||||
text-decoration: none
|
||||
|
||||
table.hardware-info
|
||||
border-spacing: 0
|
||||
padding: 8px
|
||||
border: 1px solid #999
|
||||
td
|
||||
border: none
|
||||
td:not(:nth-child(2))
|
||||
border-right: 1px solid #bbb
|
||||
tr:not(:last-child) td
|
||||
border-bottom: 1px solid #bbb
|
||||
|
||||
.tempGauge
|
||||
position: relative
|
||||
box-sizing: border-box
|
||||
width: 100%
|
||||
max-width: 175px
|
||||
height: 300px
|
||||
margin-left: auto
|
||||
margin-right: auto
|
||||
border: 4px solid #212121
|
||||
background: rgb(61,191,37)
|
||||
background: linear-gradient(0deg, rgba(61,191,37,1) 45%, rgba(253,255,2,1) 65%, rgba(253,255,2,1) 75%, rgba(253,45,45,1) 100%)
|
||||
|
||||
.tempGaugeFill
|
||||
display: block
|
||||
position: absolute
|
||||
left: 0
|
||||
top: 0
|
||||
box-sizing: border-box
|
||||
width: 100%
|
||||
height: 0
|
||||
background: white
|
||||
|
||||
#header h1
|
||||
text-align: center
|
||||
|
||||
@ -50,10 +144,19 @@ button
|
||||
bottom: 0
|
||||
padding-top: 25px
|
||||
padding-bottom: 25px
|
||||
background: white
|
||||
border-top: 1px solid #999
|
||||
font-size: 16px
|
||||
|
||||
.row
|
||||
position: relative
|
||||
|
||||
p.no-margin
|
||||
margin-bottom: 0
|
||||
|
||||
p#version-info
|
||||
text-decoration: underline
|
||||
|
||||
#systemPages
|
||||
> div:nth-child(2n + 3)
|
||||
margin-left: 0
|
||||
|
12
assets/twig/about.twig
Normal file
12
assets/twig/about.twig
Normal file
@ -0,0 +1,12 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||||
<title>About Sentry</title>
|
||||
</head>
|
||||
<body>
|
||||
<p>This is a test.</p>
|
||||
</body>
|
||||
</html>
|
@ -1,27 +1,38 @@
|
||||
{% extends 'layout.twig' %}
|
||||
|
||||
{% block scripts %}
|
||||
<script src="./js/cpu.js" charset="utf-8"></script>
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<header class="row">
|
||||
<div class="columns twelve u-text-center">
|
||||
<h1>Sentry System Info</h1>
|
||||
<h1>Sentry CPU Info</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="row">
|
||||
<h5>CPU Model: <span id="cpuInfo">Random CPU</span></h5>
|
||||
<p><span id="cpuCores">2</span>c/<span id="cpuThreads">4</span>t @ <span id="cpuClock">2.0</span>Ghz</p>
|
||||
<p>CPU temperature: <span id="cpuTemp">12</span>°C</p>
|
||||
</section>
|
||||
<article class="columns eight">
|
||||
<h5>CPU Model: <span id="cpuInfo">Random CPU</span></h5>
|
||||
<table class="hardware-info u-full-width">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Physical cores</td>
|
||||
<td><span id="cpuCores">2</span> cores</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Logical threads</td>
|
||||
<td><span id="cpuThreads">4</span> threads</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Base clock</td>
|
||||
<td><span id="cpuClockBase">2.0</span>Ghz</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Boost clock</td>
|
||||
<td><span id="cpuClockBoost">2.0</span>Ghz</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p>CPU temperature: <span id="cpuTemp">12</span>°C</p>
|
||||
</article>
|
||||
|
||||
<section class="row">
|
||||
<div class="columns twelve">
|
||||
<a href="index.html">Back</a>
|
||||
</div>
|
||||
<article class="columns four">
|
||||
<div id="cpuTempDisplay" class="tempGauge">
|
||||
<div class="tempGaugeFill"></div>
|
||||
</div>
|
||||
</article>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
||||
|
28
assets/twig/gpu.twig
Normal file
28
assets/twig/gpu.twig
Normal file
@ -0,0 +1,28 @@
|
||||
<header class="row">
|
||||
<div class="columns twelve u-text-center">
|
||||
<h1>GPU Info</h1>
|
||||
<select id="gpuSelector"></select>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="row">
|
||||
<article class="columns twelve">
|
||||
<h5>GPU Model: <span id="gpuInfo">Random GPU</span></h5>
|
||||
<table class="hardware-info u-full-width">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>GPU vendor</td>
|
||||
<td><span id="gpuVendor">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>GPU memory</td>
|
||||
<td><span id="gpuVram">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Bus</td>
|
||||
<td><span id="gpuBus">N/a</span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</article>
|
||||
</section>
|
@ -8,7 +8,7 @@
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="row">
|
||||
<section id="systemPages" class="row">
|
||||
<!-- CPU info page link -->
|
||||
<div class="columns six u-text-center">
|
||||
<a class="pageLink" href="cpu.html">
|
||||
@ -24,6 +24,22 @@
|
||||
<p class="u-text-center">Graphics Card</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Memory info page link -->
|
||||
<div class="columns six u-text-center">
|
||||
<a href="memory.html" class="pageLink">
|
||||
<i class="fa-solid fa-memory"></i>
|
||||
<p class="u-text-center">Memory</p>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<!-- Storage devices page link -->
|
||||
<div class="columns six u-text-center">
|
||||
<a href="storage.html" class="pageLink">
|
||||
<i class="fa-solid fa-hard-drive"></i>
|
||||
<p class="u-text-center">Storage devices</p>
|
||||
</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endblock %}
|
||||
|
@ -8,24 +8,56 @@
|
||||
<link rel="stylesheet" href="./styles/sentry.css">
|
||||
<title>Sentry System Monitor</title>
|
||||
<script src="./js/sentry.js" charset="utf-8"></script>
|
||||
{% block scripts %}{% endblock %}
|
||||
<script src="./js/cpu.js"></script>
|
||||
<script src="./js/memory.js"></script>
|
||||
<script src="./js/storage.js"></script>
|
||||
<script src="./js/gpu.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
{% block content %}{% endblock %}
|
||||
<!-- tab buttons -->
|
||||
<div id="tab-bar">
|
||||
<div class="container fluid">
|
||||
<div class="row">
|
||||
<div class="columns twelve">
|
||||
<button class="tab-button active" onclick="openTab('overview')">Overview</button>
|
||||
<button class="tab-button" onclick="openTab('cpu')">CPU</button>
|
||||
<button class="tab-button" onclick="openTab('memory')">Memory</button>
|
||||
<button class="tab-button" onclick="openTab('storage')">Storage</button>
|
||||
<button class="tab-button" onclick="openTab('gpu')">GPU</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="wrapper" class="container">
|
||||
<div class="component-display active" data-component="overview">
|
||||
{% include 'overview.twig' %}
|
||||
</div>
|
||||
<div class="component-display" data-component="cpu">
|
||||
{% include 'cpu.twig' %}
|
||||
</div>
|
||||
<div class="component-display" data-component="memory">
|
||||
{% include 'memory.twig' %}
|
||||
</div>
|
||||
<div class="component-display" data-component="storage">
|
||||
{% include 'storage.twig' %}
|
||||
</div>
|
||||
<div class="component-display" data-component="gpu">
|
||||
{% include 'gpu.twig' %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<footer id="footer">
|
||||
<div class="container fluid">
|
||||
<div class="row">
|
||||
<div class="columns three"><p></p></div>
|
||||
<div class="columns three">
|
||||
<p id="version-info" class="no-margin u-text-center">Sentry v<span id="app-version"></span></p>
|
||||
</div>
|
||||
<div class="columns six">
|
||||
<p class="no-margin">This app was built using:</p>
|
||||
<p class="no-margin">
|
||||
Node.js <span id="node-version"></span>,
|
||||
Chromium <span id="chrome-version"></span>,
|
||||
and Electron <span id="electron-version"></span>.
|
||||
</p>
|
||||
<p class="no-margin u-text-center">Developed by Bit Goblin free of charge.</p>
|
||||
</div>
|
||||
<div class="columns three">
|
||||
<p class="no-margin u-text-center"><a href="https://git.metaunix.net/BitGoblin/Sentry">Source code</a></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
10
assets/twig/memory.twig
Normal file
10
assets/twig/memory.twig
Normal file
@ -0,0 +1,10 @@
|
||||
<header class="row">
|
||||
<div class="columns twelve u-text-center">
|
||||
<h1>Memory Info</h1>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="row">
|
||||
<p><span id="memoryFree">N/a</span> free out of <span id="memoryTotal">N/a</span>.</p>
|
||||
<p><span id="memoryActive">N/a</span> is actively used | <span id="memoryBuffCache">N/a</span> is used in buffers/cache.</p>
|
||||
</section>
|
5
assets/twig/overview.twig
Normal file
5
assets/twig/overview.twig
Normal file
@ -0,0 +1,5 @@
|
||||
<header class="row">
|
||||
<div class="columns twelve u-text-center">
|
||||
<h1>Sentry Overview</h1>
|
||||
</div>
|
||||
</header>
|
36
assets/twig/storage.twig
Normal file
36
assets/twig/storage.twig
Normal file
@ -0,0 +1,36 @@
|
||||
<header class="row">
|
||||
<div class="columns twelve u-text-center">
|
||||
<h1>Storage Device Info</h1>
|
||||
<select id="diskSelector"></select>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="row">
|
||||
<article class="columns twelve">
|
||||
<h5>Device Model: <span id="diskInfo">Loading...</span></h5>
|
||||
<table class="hardware-info u-full-width">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Disk Path</td>
|
||||
<td><span id="diskPath">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Device Type</td>
|
||||
<td><span id="diskType">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Capacity</td>
|
||||
<td><span id="diskSize">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Vendor</td>
|
||||
<td><span id="diskVendor">N/a</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Current Temperature</td>
|
||||
<td><span id="diskTemp">N/a</span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</article>
|
||||
</section>
|
10
main.js
10
main.js
@ -1,12 +1,14 @@
|
||||
// Modules to control application life and create native browser window
|
||||
const {app, BrowserWindow} = require('electron');
|
||||
const { app, BrowserWindow, Menu } = require('electron');
|
||||
const path = require('path');
|
||||
|
||||
function createWindow () {
|
||||
// Create the browser window.
|
||||
const mainWindow = new BrowserWindow({
|
||||
width: 800,
|
||||
height: 600,
|
||||
height: 700,
|
||||
minWidth: 735,
|
||||
minHeight: 600,
|
||||
webPreferences: {
|
||||
nodeIntegration: true,
|
||||
contextIsolation: false,
|
||||
@ -21,6 +23,10 @@ function createWindow () {
|
||||
// mainWindow.webContents.openDevTools()
|
||||
}
|
||||
|
||||
// Set the application menu
|
||||
const menu = require('./src/menu').createMenu(app);
|
||||
Menu.setApplicationMenu(menu);
|
||||
|
||||
// This method will be called when Electron has finished
|
||||
// initialization and is ready to create browser windows.
|
||||
// Some APIs can only be used after this event occurs.
|
||||
|
1804
package-lock.json
generated
1804
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
14
package.json
14
package.json
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "sentry",
|
||||
"version": "0.1.1",
|
||||
"version": "0.3.3",
|
||||
"description": "Desktop app to view system information and sensors",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
@ -9,15 +9,15 @@
|
||||
"build-windows": "electron-builder build --win",
|
||||
"grunt": "grunt"
|
||||
},
|
||||
"repository": "https://git.metaunix.net/metaunix/sentry",
|
||||
"homepage": "https://git.metaunix.net/metaunix/sentry#readme",
|
||||
"repository": "https://git.metaunix.net/BitGoblin/sentry",
|
||||
"homepage": "https://git.metaunix.net/BitGoblin/sentry#readme",
|
||||
"keywords": [
|
||||
"sensors",
|
||||
"cpu",
|
||||
"gpu",
|
||||
"memory"
|
||||
],
|
||||
"author": "Gregory Ballantine <gballantine@metaunix.net>",
|
||||
"author": "Gregory Ballantine <gballantine@bitgoblin.tech>",
|
||||
"license": "BSD-2-Clause",
|
||||
"devDependencies": {
|
||||
"electron": "^18.2.4",
|
||||
@ -25,15 +25,15 @@
|
||||
"grunt": "^1.5.3",
|
||||
"grunt-contrib-coffee": "^2.1.0",
|
||||
"grunt-contrib-copy": "^1.0.0",
|
||||
"grunt-contrib-sass": "^2.0.0",
|
||||
"grunt-contrib-watch": "^1.1.0",
|
||||
"grunt-dart-sass": "^2.0.1",
|
||||
"grunt-twig-render": "^1.8.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"systeminformation": "^5.11.15"
|
||||
"systeminformation": "^5.17.12"
|
||||
},
|
||||
"build": {
|
||||
"appId": "net.metaunix.sentry",
|
||||
"appId": "tech.bitgoblin.sentry",
|
||||
"copyright": "Copyright © 2022 ${author}",
|
||||
"win": {
|
||||
"target": "nsis",
|
||||
|
@ -1,3 +1,5 @@
|
||||
const appInfo = require('./package.json');
|
||||
|
||||
// All of the Node.js APIs are available in the preload process.
|
||||
// It has the same sandbox as a Chrome extension.
|
||||
window.addEventListener('DOMContentLoaded', () => {
|
||||
@ -6,7 +8,5 @@ window.addEventListener('DOMContentLoaded', () => {
|
||||
if (element) element.innerText = text
|
||||
}
|
||||
|
||||
for (const type of ['chrome', 'node', 'electron']) {
|
||||
replaceText(`${type}-version`, process.versions[type])
|
||||
}
|
||||
})
|
||||
replaceText('app-version', appInfo.version);
|
||||
});
|
||||
|
15
src/menu/help.js
Normal file
15
src/menu/help.js
Normal file
@ -0,0 +1,15 @@
|
||||
const { BrowserWindow } = require('electron');
|
||||
|
||||
exports.about = function() {
|
||||
const aboutWindow = new BrowserWindow({
|
||||
width: 600,
|
||||
height: 400,
|
||||
webPreferences: {
|
||||
nodeIntegration: true,
|
||||
contextIsolation: false
|
||||
}
|
||||
});
|
||||
|
||||
// and load the about.html of the app.
|
||||
aboutWindow.loadFile('public/about.html');
|
||||
};
|
30
src/menu/index.js
Normal file
30
src/menu/index.js
Normal file
@ -0,0 +1,30 @@
|
||||
const electron = require('electron');
|
||||
|
||||
// load event handlers
|
||||
const helpHandlers = require('./help');
|
||||
|
||||
exports.createMenu = function(app) {
|
||||
return electron.Menu.buildFromTemplate([
|
||||
{
|
||||
label: 'File',
|
||||
submenu: [
|
||||
{
|
||||
label: 'Close',
|
||||
click: function() {
|
||||
app.quit();
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
{
|
||||
label: 'Help',
|
||||
submenu: [
|
||||
{
|
||||
label: 'About',
|
||||
click: helpHandlers.about
|
||||
}
|
||||
]
|
||||
}
|
||||
]);
|
||||
};
|
Loading…
Reference in New Issue
Block a user