DevOps/MacOS 8

[MacOS] 내가 보려고 만든 MacOS 초기설정 (2) - 환경설정

Dev git git config 설정 $ git config --global user.name "mooncoding" $ git config --global user.email "mooncoding@naver.com" $ git config user.name $ git config user.email brew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" # 필요하다면 Next steps을 실행하세요 ==> Next steps: - Run these two commands in your terminal to add Homebrew to your PATH: (echo; echo '..

DevOps/MacOS 2024.03.18

[MacOS] Amethyst (2) - Layout

최근 Amethyst의 Layout 기능을 사용하고 OSX App Window 관리 프로그램을 Amethyst로 정착했다. 기존 Spectacle, Rectangle등의 프로그램은 개별 App Window을 조작했다면, Amethyst Layout 기능은 그것과는 결이 다르다. 전체 화면에서 App들이 배치될 방식의 Layout을 미리 설정하면 App들이 Layout 대로 자리를 채우는 방식이다. 아래 사진을 보면 Layout 개념을 이해하는데 도움이 될 수 있다. 위 레이아웃은 "Tall"이란 형태의 레이아웃이고 Amethyst에서 더 다양한 Layout을 제공하고 있다.

DevOps/MacOS 2024.03.11

[MacOS] 내가 보려고 만든 MacOS 초기설정 (1)

단축키 정리 단축키 카테고리 화면분할 단축키 (ctrl + opt ■■□) 앱 단축키 (opt + cmd □■■) OS에서 호출하는 앱 단축키 (ctrl + cmd ■□■) 시스템 단축키 키보드 단축키 > 키보드 > Dock으로 초점 이동 > "option + tab" 키보드 단축키 > Spotlight > Spotlight 검색 보기 > "해제" (raycast로 대체) 앱 단축키 (opt + cmd) App 메뉴 제목. (속성필드를 동일하게 입력) Desc. chrome . 탭 "" 이동 opt + cmd + "방향키 >" vscode . 탭 "" vscode . 탭 ">" 이동 opt + cmd + "방향키 >" OSX 설정 미션컨트롤 데스크탑 및 Dock > Mission Control > Sp..

DevOps/MacOS 2023.04.07

[MacOS] hosts 파일설정하기

local 환경에 서버를 실행했을 때 127.0.0.1(localhost) 서버로 접근할 수 있습니다. 하지만 개발하다보면 도메인에 따라 로직을 설정해야하는 경우와 같이 local 환경에서도 고정 도메인이 필요한 경우가 있는데요. 그럴 때 고정 도메인을 설정하는 방법을 소개하려 합니다. 일단 수정해야하는 파일의 경로는 아래와 같습니다. $ sudo vi /etc/hosts 파일을 열면 아래와 같이 기본적으로 설정된 local 환경의 도메인 주소들을 확인할 수 있습니다. localhost도 해당 파일에 설정되어 있네요. 이 파일에 원하는 도메인 주소를 추가해주면 됩니다. 아래 local.mooncode.com 이라는 주소를 추가했습니다. 이렇게 하면 개발환경에서 동작하는 서버를 local.moonscode..

DevOps/MacOS 2022.06.20

[MacOS] Amethyst (1) - 마우스없이 화면포커스컨트롤하기

Amethyst Amethyst | ianyh Tiling window manager for macOS along the lines of xmonad. A quick screencast of basic functionality can be found here. (It's rough, and I'd love to see a better one if someone has the skills and inclination to make one.) Getting Amethyst Amethyst is avail ianyh.com 안녕하세요. 오늘은 Amethyst 앱에 대해서 소개하려합니다. 애플리케이션 창을 컨트롤할 때 제가 정말 좋아하는 Spectacle이란 앱이 있는데요. (Spectacle 소개글 https..

DevOps/MacOS 2022.06.15

[MacOS] iTerm

iTerm은 다양한 기능을 담고 있는 터미널 애플리케이션입니다. https://iterm2.com/ iTerm2 - macOS Terminal Replacement iTerm2 by George Nachman. Website by Matthew Freeman, George Nachman, and James A. Rosen. Website updated and optimized by HexBrain iterm2.com Status Bar Status Bar는 Terminal에서 디바이스의 다양한 상태값을 볼 수 있도록 도와주는 설정입니다. 들어가는 순서는 좌상단 iTerm2 > Preferences... 메뉴로 들어가 Profile > Session > Status bar enabled를 활성화 해주면 됩..

DevOps/MacOS 2022.06.14

[MacOS] oh my ZSH

https://ohmyz.sh/ Oh My Zsh - a delightful & open source framework for Zsh Oh My Zsh is a delightful, open source, community-driven framework for managing your Zsh configuration. It comes bundled with several helpful functions, helpers, plugins, themes, and a few things that make you shout... OH MY ZSH! ohmyz.sh Unleash your terminal like never before! 이전과는 다른 방식으로 터미널을 활용하세요. 홈페이지의 슬로건처럼 oh my ..

DevOps/MacOS 2022.06.13

[MacOS] 환경변수 어떻게 셋팅할까?

환경변수란 무엇일까요? 환경변수란 OS에서 접근할 수 있는 전역 시스템 변수입니다. 예를 들어 A의 폴더에 node의 실행파일이 있다고 가정해보겠습니다. 개발하는 프로젝트에서 node 서버를 실행하기 위해 매번 상위 디렉토리로 이동하여 node의 실행파일이 있는 폴더를 찾아야 할 것 입니다. 하지만 실행파일이 있는 위치를 변수로 지정한다면 어떨까요? 매번 node 실행파일의 위치를 기억하지 않고 참조할 수 있을 것입니다. 환경변수에도 특징을 가진 상수값이 존재합니다. PATH - 전역접근이 가능한 디렉토리 목록 HOME - home 디렉토리의경로 USERNAME 방법1 첫 번째 방법은 터미널에서 직접 환경변수를 호출하는 것 입니다. $ export ZSH="$HOME/.oh-my-zsh" $ echo $..

DevOps/MacOS 2022.06.13