mirror of
https://github.com/lptstr/winfetch.git
synced 2026-09-26 09:00:21 -04:00
Add motherboard info
This commit is contained in:
@@ -245,6 +245,16 @@ function info_os {
|
||||
}
|
||||
|
||||
|
||||
# ===== MOTHERBOARD =====
|
||||
function info_motherboard {
|
||||
$motherboard = Get-CimInstance Win32_BaseBoard -CimSession $cimSession -Property Manufacturer,Product
|
||||
return @{
|
||||
title = "Motherboard"
|
||||
content = "{0} {1}" -f $motherboard.Manufacturer, $motherboard.Product
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# ===== TITLE =====
|
||||
function info_title {
|
||||
return @{
|
||||
|
||||
Reference in New Issue
Block a user