X윈도우 Logout하기가 번거로워 Cont'l+q 정도의 단축키로 지정하려고 한다.
* 참고 : http://unix.stackexchange.com/questions/170029/command-to-log-out-of-lxde-directly
단축키는 ~/.config/openbox/lxde-pi-rc.xml에 기록되어 있는것 같다.
1. 열어보자
$ nano /home/pi/.config/openbox/lxde-pi-rc.xml |
- - - <keyboard> <chainQuitKey>C-g</chainQuitKey> <!-- Keybindings for desktop switching --> <keybind key="C-A-Left"> <action name="DesktopLeft"> <dialog>no</dialog> <wrap>no</wrap> </action> </keybind> <keybind key="C-A-Right"> <action name="DesktopRight"> <dialog>no</dialog> <wrap>no</wrap> </action> </keybind> <keybind key="C-A-Up"> <action name="DesktopUp"> <dialog>no</dialog> <wrap>no</wrap> </action> </keybind> - - - |
2. <!-- Keybindings for desktop switching -->이라는 부분부터 단축키 지정부분이다.
- C : Control, A : Alt, W : Window Key, S : Shift, Up : 화살표위, Down : 하살표아래......, 소문자 영어 : 말그대로 소문자 영어
- 아래와 같이 추가해 주면 단축키 완성
- 어떠한 부작용이 있을 지 모른다. 일단 편하다.
- - - <keyboard> <chainQuitKey>C-g</chainQuitKey> <!-- Keybindings for desktop switching --> <keybind key="C-q"> <action name="Execute"> <command>pkill -9 -f lxsession</command> </action> </keybind> <keybind key="C-A-Left"> <action name="DesktopLeft"> <dialog>no</dialog> <wrap>no</wrap> </action> </keybind> - - - |
'IT > 라즈베리파이2' 카테고리의 다른 글
라즈베리파이에서 만화보기 Comix (0) | 2015.06.21 |
---|---|
x윈도우 테마변경 및 바탕화면 변경 (0) | 2015.06.20 |
터미널에서 자주쓰는 명령어 단축키 만들기 - alias (0) | 2015.06.20 |
★◆▲● 라즈비안, samba,vstfpd, 토렌트서버, kodi 설치 (0) | 2015.06.19 |
크로미움 버전업 22 >>37 (0) | 2015.06.19 |