View steam sysinfo
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz | |
CPU Family: 0x6 |
View geget.ps1
param( | |
[parameter( ValueFromRemainingArguments = $true )] | |
[string[]]$args | |
) | |
function Show-Help { | |
Clear-Host | |
Write-Host | |
Write-Host "geget.ps1, Version 0.0.1" |
View geget
#!/usr/bin/env bash | |
usage() | |
{ | |
clear | |
echo | |
RESET_ATTR="$(tput sgr0)" | |
COLOR_GREEN="$(tput setaf 2)" | |
COLOR_DARK_GREY="$(tput setaf 245)" | |
COLOR_DARK_BLUE="$(tput setaf 046)" |