Skip to content

Instantly share code, notes, and snippets.

View Nitemice's full-sized avatar
💾
Backing everything up

Nitemice Nitemice

💾
Backing everything up
View GitHub Profile

Keybase proof

I hereby claim: * I am nitemice on github. * I am nitemice (https://keybase.io/nitemice) on keybase. * I have a public key ASApFdWHz499JJQKsJxDvjlwdgvFernZTxnOFpNNP4WMHAo To claim this, I am signing this object:

{   "body": {     "key": {       "eldest_kid": "01202915d587cf8f7d24940ab09c43be3970760bc57ab9d94f19ce16934d3f858c1c0a",       "host": "keybase.io",       "kid": "01202915d587cf8f7d24940ab09c43be3970760bc57ab9d94f19ce16934d3f858c1c0a",       "uid": "0c5e7abfad59058fc7db60bdf087b119",       "username": "nitemice"     },     "merkle_root": {       "ctime": 1543531290,       "hash": "cbdf5f0f473446a0f698194ed23e972aea19fb76e8006e79967e048363d13277d80c1360d522025b23c276a1bf2878c4282c10780951eb2af552c8ce627a06dc",       "hash_meta": "394069931d0b21b3015e6cbc2e6d5071afce01cb7a7f0c37b3db34812c9b584d",       "seqno": 4029818     },     "service": {       "entropy": "uE3YsXuzdOm0S3T5U3t9Y9sL",       "name": "github",       "username": "nitemice"     },     "type": "web_servi
@Nitemice
Nitemice / wpStyleRandomizer.bat
Last active November 6, 2018 13:45
Randomly swap between "Fill" and "Span" Wallpaper modes on Windows
@echo off
set /a num=%random% %% 3
if %num% equ 0 (set /a style=22) else if %num% equ 1 (set /a style=10)
if %num% neq 2 (reg add "HKCU\control panel\desktop" /v WallpaperStyle /t REG_SZ /d %style% /f)
REM RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
exit