diff options
author | Peter | 2014-02-14 20:32:53 +0000 |
---|---|---|
committer | Peter | 2014-02-14 20:32:53 +0000 |
commit | b2acf1b7da4f8c67b5f8c0119625c2da73e04520 (patch) | |
tree | dcddddce6495ea967c01ce243dd72ca440c617d6 | |
parent | 52348cdb102133c004db9837527caf8f4506dd9d (diff) | |
download | ahka-b2acf1b7da4f8c67b5f8c0119625c2da73e04520.tar.gz ahka-b2acf1b7da4f8c67b5f8c0119625c2da73e04520.tar.bz2 ahka-b2acf1b7da4f8c67b5f8c0119625c2da73e04520.zip |
Replace Firefox with Chromium
Couple of reasons...
-rw-r--r-- | ahk-assistant.ahk | 4 | ||||
-rw-r--r-- | appspecific.ahk | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ahk-assistant.ahk b/ahk-assistant.ahk index 0a1f08f..722c4fe 100644 --- a/ahk-assistant.ahk +++ b/ahk-assistant.ahk @@ -21,8 +21,8 @@ SetNumLockState, AlwaysOn #q::Run notepad ^q::Send !{F4} ;quit most programs #+q::Run notepad.exe "%A_MyDocuments%\Dropbox\docs\faulties.txt" -#w::Run firefox.exe -#+w::Run firefox.exe -private-window +#w::Run "C:\Program Files (x86)\Chromium\chrome.exe" +#+w::Run "C:\Program Files (x86)\Chromium\chrome.exe" -incognito #e:: ;launch documents directory if A_OSVersion in WIN_XP { diff --git a/appspecific.ahk b/appspecific.ahk index d8f4d2b..3f259d0 100644 --- a/appspecific.ahk +++ b/appspecific.ahk @@ -91,12 +91,12 @@ return #IfWinActive -;firefox -#IfWinActive ahk_class MozillaWindowClass - ^+w::Send ^w ;quit window closes tab +;chromium +#IfWinActive ahk_class ahk_class Chrome_WidgetWin_1 + ^+w::Send ^w ;quit window closes tab ^q::Send ^w ;quit now closes tab, the two keys are too close for this sort of thing ^d::Send ^f ;bookmark remapped to find - ^+n::Run firefox.exe -private-window ;remap unclose window to new private tab + ^b::Send ^v ;replace bookmarks with paste #IfWinActive ;notepad2-mod |