한이음/GPS 좌표 트래킹을 통한 자율주행 로봇

UBUNTU VS Code, Terminator 설치방법

MZ 아이종 2022. 7. 13. 19:58

VS Code

$ sudo apt update
$ sudo apt install software-properties-common apt-transport-https wget
$ wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
$ sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
$ sudo apt update
$ sudo apt install code

 

 

Terminmator

$ sudo apt-get install terminator
$ vi ~/.config/terminator/config 

# 아래 내용 입력

[global_config]
    tab_position = bottom
    handle_size = 0
    focus = system
[keybindings]
[profiles]
  [[default]]
    scrollbar_position = hidden
    use_system_font = False
    visible_bell = True
    background_darkness = 0.8
    background_type = transparent
    background_image = None
    show_titlebar = False
    font = 나눔고딕코딩 Bold 14
[layouts]
  [[default]]
    [[[child1]]]
      type = Terminal
      parent = window0
    [[[window0]]]
      type = Window
      parent = ""
      size = 1000, 600
[plugins]

 

기능 단축키
수평 분할 Ctrl + Shfit + O
수직 분할 Ctrl + Shfit + E
다음 창 활성화 Ctrl + Shfit + N or Ctrl + Tab
이전 창 활성화 Ctrl + Shfit + P or Ctrl + Shfit + Tab
현재 활성 창 닫기 Ctrl + Shfit + W
터미네이터 실행 Ctrl + Alt + T
터미네이터 종료 Ctrl + Shfit + Q
전체 화면 F11

: F11