Releases: M4cs/winfetch
Releases · M4cs/winfetch
New Config Variable "network"
Add Update and Custom Config Loading Command Line Args
- Adds the
-u
argument to check for an update via GitHub - Adds the
-c <config path>
argument to load a config file from the non-default location.
Fixes ASCII runtime error when lines aren't long enough
- Fixes a bug with smaller sized ASCII art so that it doesn't break formatting at runtime.
Example of Error:
panic: runtime error: index out of range [2] with length 2
goroutine 1 [running]:
main.main()
C:/Users/Max/winfetch/main.go:176 +0x1304
New Default ASCII Art
Add Formatting instead of booleans
- You can now choose which format you want the info to display in. Everything is type strict. Please see the readme for all available modules to display! Modules Added:
"user", "sep", "uptime", "mem", "cpu", "procs", "cpuCores", "cpuThreads", "disk", "wversion", "gpus", "bios", "baseboard"
- New Config Value
format
- Fix ShowAscii
- Example Config:
{
"format": [
"user",
"sep",
"uptime",
"mem",
"cpu",
"cpuCores",
"cpuThreads",
"procs",
"disk",
"wversion",
"gpus",
"bios",
"baseboard"
],
"showAscii": true,
"useDefaultColors": true,
"useSmallAscii": false,
"asciiColor": "Blue",
"useCustomAscii": false,
"customAsciiPath": "",
"userColor": "Red",
"sepColor": "Red",
"titleColor": "Green",
"infoColor": "White",
"titles": {
"memory": "Memory",
"cpu": "CPU #",
"cpuCores": "CPU Cores",
"cpuThreads": "CPU Threads",
"gpus": "GPU #",
"diskSize": "Disk Size",
"windowsVersion": "Windows Ver.",
"bios": "BIOS",
"baseboard": "Baseboard",
"processCount": "Processes",
"uptime": "Uptime"
}
}
Add Process Count, CPUs, and Uptime
- Adds
ShowCPU
,ShowUptime
, andShowProcessCount
to config - Adds
titles.cpu
,titles.uptime
, andtitles.processCount
to config
Add Small Windows Ascii and Custom Ascii Art Options to Config
useCustomAscii
now available in configcustomAsciiPath
now available in configuseSmallAscii
now available in config
New Color Configuration Allowing Custom Colors and Custom Titles
You may need to delete your configuration and re-run winfetch
in order to get the new features working correctly!
Using xterm-256 colors now!
New Feature: Custom Colors
- Adds new color options for:
asciiColor
,userColor
,sepColor
,titleColor
,infoColor
- Allows the following colors:
New Feature: Custom Titles
- Allows you to change titles for each module.
Winfetch Inital Release - 1.0.0
First Stable Release for GitHub