From 7856e654604dbc4ebadcc80ab6dc0dcb8aa14182 Mon Sep 17 00:00:00 2001 From: jeena Date: Mon, 11 Feb 2013 00:25:12 -0800 Subject: [PATCH] Updated Hotkey (markdown) --- Hotkey.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Hotkey.md b/Hotkey.md index 3523851..0f4f219 100644 --- a/Hotkey.md +++ b/Hotkey.md @@ -8,13 +8,13 @@ First take a look at this keyboard and find the number to the key you want to se Then write this line into the `Terminal.app` and change the default number **46** to your number, then press enter and it is done. ``` sh -defaults write nu.jabs.apps.tentia newTweetKey -int 46 +defaults write nu.jabs.apps.bungloo newTweetKey -int 46 ``` If you for example would like to use the key `T` instead, you would write: ``` sh -defaults write nu.jabs.apps.tentia newTweetKey -int 17 +defaults write nu.jabs.apps.bungloo newTweetKey -int 17 ``` ## Change the modifier keys @@ -31,11 +31,11 @@ controlKey: 4096 You have to add the numbers of the keys you want to use together and then write this line, replacing the default number **6400** with the sum and press enter: ``` sh -defaults write nu.jabs.apps.tentia newTweetModifierKey -int 6400 +defaults write nu.jabs.apps.bungloo newTweetModifierKey -int 6400 ``` For example, if you want to use the key combination `Ctrl+Alt+T` you have to first set `T` (that means **17**) as `newTweetKey` as seen above. Then add **4096** (`Ctrl`) to **2048** (`Alt`) which makes **6144** (you can use the console calculator `bc` to make sure it's correct), so you would write: ``` sh -defaults write nu.jabs.apps.tentia newTweetModifierKey -int 6144 +defaults write nu.jabs.apps.bungloo newTweetModifierKey -int 6144 ``` \ No newline at end of file