matt3o wrote:I believe it's PVC, at least there's a writing saying "PVC" in the back of my model m
Hmm, I did try melting some of the shavings in acetone, but nothing happened. So that ruled out ABS and I think PBT
webwit wrote:This reminds me of the keyboard mod urban legend of the guy who was cutting his case. It generated so much heat, that when he hit the other side with his electric saw, the keyboard case had perfectly "cured" itself by melting the parts together.
Hmm, when I cut them, it didn't generate any heat. But then again, I was using a table saw. He might have used something different
Also, since there are no arrow keys and no 1x between the Ralt and Rcontrol, I can't do a poker style of arrow keys. So I found this really cool AHK script
Code: Select all
;; Auto-Reload If Changes Are Made
{
SetTimer,UPDATEDSCRIPT,1000
UPDATEDSCRIPT:
FileGetAttrib,attribs,%A_ScriptFullPath%
IfInString,attribs,A
{
FileSetAttrib,-A,%A_ScriptFullPath%
SplashTextOn,,,Updated script,
Sleep,500
Reload
}
Return
}
Capslock::
Gui, 99:+ToolWindow
Gui, 99:Show, x-1 y-1 +NoActivate, Dummy IJKL to Arrow Keys
Keywait, Capslock
If A_ThisHotkey != Capslock
Gui, 99:Destroy
else Gui, 99:Show, x-1 y-1 +NoActivate, Dummy IJKL to Arrow Keys +CapsToCancel
return
#IfWinExist, Dummy IJKL to Arrow Keys +CapsToCancel
Capslock::return
CapsLock Up::Gui, 99:Destroy
#IfWinExist, Dummy IJKL to Arrow Keys
w::Up
a::Left
s::Down
d::Right
\::delete
#IfWinExist
If you press and release the caps lock, it locks in the arrow keys. If you hold the caps lock and press the arrow keys, you get arrow keys, but as soon as you release the caps lock, it reverts back to letters. Also, shift + caps enters standard caps lock