Gregory Ballantine
fb1d0fc664
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
11 lines
252 B
CoffeeScript
11 lines
252 B
CoffeeScript
si = require('systeminformation')
|
|
|
|
window.onload = () ->
|
|
si.graphics()
|
|
.then((data) ->
|
|
document.getElementById('gpuInfo').innerText = data.controllers[0].model
|
|
console.log(data)
|
|
).catch((error) ->
|
|
console.error(error)
|
|
)
|