Tuesday, March 14, 2023

Conky - Debian 11




conky.config = {
alignment = 'top_right',
background = false,
border_width = 1,
default_color = 'black',
default_outline_color = 'white',
default_shade_color = 'black',
double_buffer = true,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
use_xft = true,
font = 'DejaVu Sans:size=8',
gap_x = 15,
gap_y = 15,
minimum_width = '180',
maximum_width = 300,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_class = 'Conky',
--own_window_colour = '#555555',
own_window_type = 'normal',
own_window_transparent = true,
own_window_argb_visual = true,
own_window_argb_value = 0,
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
short_units = true,
stippled_borders = 3,
update_interval = 1,
uppercase = false,
use_spacer = 'none',
};
conky.text = [[
${alignr}$color${execi 30 lsb_release -ds}
${alignr}$color$kernel $machine
${voffset 10}${font NanumGothic:size=10}${time %A}${font}${voffset -10}
${voffset 10}${font NanumGothic:size=10}${time %B} ${time %e}, ${time %Y} ${font}${voffset -10}
${voffset 10}${font NanumGothic:size=18}${time %I:%M %p}${font}${voffset -10}



${font NanumGothic:size=12}${alignc}Uptime: $color${uptime_short}

]];

 Debian 11 - VirtualBox










Thursday, January 25, 2018

Wallpaper - Ferrari 458


























Reference:
http://hddesktopwallpapers.in/wp-content/uploads/2015/07/ferrari-458-black-wallpaper.jpg
Retrieved January 25, 2018

Thursday, April 13, 2017

How to Display Windows 7 Key / Download Windows 7 ISO


Create the following VB script in Notepad:


Set WshShell = CreateObject("WScript.Shell")
MsgBox ConvertToKey(WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalProductId"))

Function ConvertToKey(Key)
Const KeyOffset = 52
i = 28
Chars = "BCDFGHJKMPQRTVWXY2346789"
Do
Cur = 0
x = 14
Do
Cur = Cur * 256
Cur = Key(x + KeyOffset) + Cur
Key(x + KeyOffset) = (Cur \ 24) And 255
Cur = Cur Mod 24
x = x -1
Loop While x >= 0
i = i -1
KeyOutput = Mid(Chars, Cur + 1, 1) & KeyOutput
If (((29 - i) Mod 6) = 0) And (i <> -1) Then
i = i -1
KeyOutput = "-" & KeyOutput
End If
Loop While i >= 0
ConvertToKey = KeyOutput
End Function




File > Save As > productkey.vbs
(save to desktop so easy to find)


Double click to execute



Download Windows 7 ISO

https://www.microsoft.com/en-us/software-download/windows7





Reference:
Retrieved April 13, 2017
https://www.howtogeek.com/206329/how-to-find-your-lost-windows-or-office-product-keys/