자주 쓰는 프로그램을 빠르게 실행하기 위한 방법을 소개합니다.

   

  • AutoHotKey : 단축키 형식으로 특정프로그램을 등록해서 사용하기 편함.
  • Launchy : 단축키로 등록할 정도는 아니지만 나름 빈번하게 사용하는 프로그램을 실행할 때 사용하면 좋을 듯 함.(www.launchy.net)

   

AutoHotKey 는 이전에 소개한 바가 있으니 참고하시길~(http://simmanix.tistory.com/42)

   

Launchy 는 윈도우에 설치된 프로그램들은 기본적으로 등록되고, 별도로 바로가기(.lnk)들을 모아놓고 해당 폴더를 추가로 지정할 수 도 있습니다.(포터블 프로그램들에 적합.)

   

   

설치

   

http://www.launchy.net/download.php <- 여기 가서 다운로드 받습니다.(설치과정은 생략합니다.)

   

설치가 완료되면 우선 Launchy 실행을 위한 단축키 부터 확인해야 합니다.

   

Tray 에

   

위와 같이 생긴 Icon 에 마우스 우클릭을 하면

   

   

이런 Context Menu 가 뜹니다.

여기서 Options 를 선택합니다.

   

   

   

   

실행

   

자 그럼 Launchy 를 통해 그림판을 실행해보자.(각자 취향의 스킨으로도 변경할 수 있습니다.)

Alt + Space 를 누른 후 Paint 를 입력해보세요.

   

   

   

보는 바와 같이 그림판을 실행하기 위해 Pa까지만 입력해도 Paint 가 목록에 보입니다.(오~~~)

윈도우에 설치된 프로그램은 대부분 적용되지만, 실행파일만 있는 프로그램이나 별도의 설치과정이 없는 Portable 프로그램등은

   

   

위와 같이 Catalog 에 바로가기들을 모아놓은 폴더를 추가하는 방식으로 사용할 수 있습니다.

(위의 경우는 D:\Shortcuts 에 그런 프로그램들의 바로가기를 모아놓고 Catalog 에 추가한 뒤 Rescan Catalog 를 한 경우입니다.)

   

지금까지가 Launcher 의 기본적인 사용법이었습니다.

이 외에도 괜찮은 기능들이 많이 있으니 자신에게 맞는 기능을 찾아서 보다 편하게 사용하시길 바랍니다.


'Util' 카테고리의 다른 글

AutoHotKey example  (0) 2016.05.24
PPTLauncher - 파워포인트 PowerPoint 다중 실행  (0) 2010.06.21

저는 AutoHotKey 는 오래전부터 사용하고 있었습니다.


자주사용하는 문구나 프로그램 등을 단축키 등록하여 사용해왔죠.


제가 현재 사용중인 AutoHotKey.ahk 파일의 내용을 뿌리니 참고하세요~


AutoHotKey.ahk

; IMPORTANT INFO ABOUT GETTING STARTED: Lines that start with a
; semicolon, such as this one, are comments.  They are not executed.

; This script has a special filename and path because it is automatically
; launched when you run the program directly.  Also, any text file whose
; name ends in .ahk is associated with the program, which means that it
; can be launched simply by double-clicking it.  You can have as many .ahk
; files as you want, located in any folder.  You can also run more than
; one ahk file simultaneously and each will get its own tray icon.

; SAMPLE HOTKEYS: Below are two sample hotkeys.  The first is Win+Z and it
; launches a web site in the default browser.  The second is Control+Alt+N
; and it launches a new Notepad window (or activates an existing one).  To
; try out these hotkeys, run AutoHotkey again, which will load this file.

; # : window key
; ^ : control key
; ! : alt key

; Note: From now on whenever you run AutoHotkey directly, this script
; will be loaded.  So feel free to customize it to suit your needs.

; Please read the QUICK-START TUTORIAL near the top of the help file.
; It explains how to perform common automation tasks such as sending
; keystrokes and mouse clicks.  It also explains more about hotkeys.

; Esc Key 를 더블클릭 했을 때 현재 윈도우 최소화하기.
;~Esc:: 
;if (A_PriorHotkey <> "~Esc" or A_TimeSincePriorHotkey > 400) 
;{ 
;    ; Too much time between presses, so this isn't a double-press. 
;    KeyWait, Esc 
;    return 
;} 
;WinMinimize, A 
;return 

;~LCtrl:: 
;if (A_PriorHotkey <> "~LCtrl" or A_TimeSincePriorHotkey > 400) 
;{ 
;    ; Too much time between presses, so this isn't a double-press. 
;    KeyWait, LCtrl 
;    return 
;} 

;InputBox, InputedString, Google Search, , , , 
;if ErrorLevel = 0
;{
;    Run, C:\Program Files\Internet Explorer\iexplore.exe "http://www.google.com/search?q="%InputedString%""
;}
;return 

;^!n::
;IfWinExist 제목 없음 - 메모장
;	WinActivate
;else
;	Run Notepad
;return

^!NumPad1::
	ret := IME_CHECK("A")
	if %ret% <> 0		; 한글모드일 경우
	{
		Toggle_IME()	; 영문모드로 변경
	}

	Send id{Tab}password{Return}
	if %ret% <> 0
	{
		Toggle_IME()	; 다시 한글모드로 원상복구
	}
return

^!NumPad2::
	ret := IME_CHECK("A")
	if %ret% <> 0		; 한글모드일 경우
	{
		Toggle_IME()	; 영문모드로 변경
	}

	VI_LOG := "cd /Log/ && vi ``ls -tr | grep run | tail -n 1;``"
	SendInput %VI_LOG%

	if %ret% <> 0
	{
		Toggle_IME()	; 다시 한글모드로 원상복구
	}
return

#`::Run C:\Program Files (x86)\Internet Explorer\iexplore.exe

;#c::
;IfWinExist AnalogX PCalc (www.analogx.com)
;	WinActivate
;else
;	Run C:\Program Files (x86)\AnalogX\PCalc\pcalc.exe
;return

#c::
Run C:\Program Files (x86)\SpeedCrunch\SpeedCrunch.exe
return

;#g::Run C:\Program Files (x86)\Internet Explorer\iexplore.exe www.google.com
#g::
InputBox, InputedString, Google Search, , , , 
if ErrorLevel = 0
{
    Run, C:\Users\simmanix\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Chrome\Chrome.lnk http://www.google.co.kr/search?q="%InputedString%"
}
return

#1::Run C:\Program Files (x86)\flyExplorer\flyExplorer.exe
#2::
IfWinExist 꼬마사전
	WinActivate
else
	Run C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Daum\Daum 꼬마사전\Daum 꼬마사전.lnk
return

#3::Run C:\Program Files (x86)\PuTTY\putty.exe
#4::Run D:\Downloads\Utils\SuperPutty-1.3.0.11\SuperPutty-1.3.0.11\SuperPutty.exe

#F1::Run C:\Users\simmanix\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Chrome\Chrome.lnk

#Insert::
FormatTime, TimeString,, yyyy년MM월dd일 HH시mm분
SendInput %TimeString%
return


#Delete::
FormatTime, TimeString,, yyyy-MM-dd HH:mm
SendInput %TimeString%
return

!`:: WinMinimize, A


#n::Run C:\Program Files (x86)\Notepad++\notepad++.exe -multiInst

^#NumpadAdd::
Send {Volume_Up}
return

^#NumpadSub::
Send {Volume_Down}
return

;<--------------------------------------------- 한영전환 스크립트 내용 --------------------------------------------->
; http://www.autohotkey.co.kr/cgi/board.php?bo_table=script&wr_id=357#c_724

Toggle_IME()
{
	Send, {vk15sc138}
}

IME_CHECK(WinTitle)
{
    WinGet,hWnd,ID,%WinTitle%
    Return Send_ImeControl(ImmGetDefaultIMEWnd(hWnd),0x005,"")
}

Send_ImeControl(DefaultIMEWnd, wParam, lParam)
{
	DetectSave := A_DetectHiddenWindows       
	DetectHiddenWindows,ON                          
	SendMessage 0x283, wParam,lParam,,ahk_id %DefaultIMEWnd%
	if (DetectSave <> A_DetectHiddenWindows)
		DetectHiddenWindows,%DetectSave%
	return ErrorLevel
}

ImmGetDefaultIMEWnd(hWnd)
{
	return DllCall("imm32\ImmGetDefaultIMEWnd", Uint,hWnd, Uint)
}

;!vk15sc1F2::                    ; I want Alt-[Eng/Han] key to be "Absolutely Hangul(Korean)" mode key. I hate toggling :(
;    ret := IME_CHECK("A")
;    if %ret% = 0                ; 0 means IME is in English mode now.
;    {
;        Send, {vk15sc138}       ; Turn IME into Hangul(Korean) mode.
;    }
;return
;^vk15sc1F2::                    ; I want Ctrl-[Eng/Han] key to be "Absolutely English" mode key. I hate toggling :(
;    ret := IME_CHECK("A")
;    if %ret% <> 0               ; 1 means IME is in Hangul(Korean) mode now.
;    {
;        Send, {vk15sc138}       ; Turn IME into English mode.
;    }
;return

'Util' 카테고리의 다른 글

[Quick Launcher] Launchy  (0) 2016.05.25
PPTLauncher - 파워포인트 PowerPoint 다중 실행  (0) 2010.06.21

듀얼모니터를 사용하는 나에게 Microsoft PowerPoint 사용시 
가장 불편한 것 중 하나는 바로 다중 실행이 안되는 것이다.
Word, Excel 은 다중 실행이 가능해서 두 개의 모니터에 서로 다른 문서를 띄워서
작업을 편하게 할 수 있지만 유독 PowerPoint 는 다중 실행이 되지 않는다.(왜 이렇게 했을까 ????)

그러나 이러한 불편함을 말끔히 해소 할 수 있는 프로그램이 있다.
바로 PPTLauncher 라는 프로그램이다.

이 프로그램은 실행파일 하나로 이루어져 있고,
Microsoft.Net Framework 2.0 이 설치되어 있어야 한다.

Microsoft.Net Framework 2.0 다운로드

PPTLauncher 의 사용법은 매우 간단하다.
다운받은 실행파일을 실행시키는 것이 전부이다.

PPTLauncher 받으러 가기 (이 프로그램을 만드신 분의 블로그)

'Util' 카테고리의 다른 글

[Quick Launcher] Launchy  (0) 2016.05.25
AutoHotKey example  (0) 2016.05.24

+ Recent posts