AiDots

(★ 19)

Mi configuración personal de Hyprland para Arch Linux, optimizada con la ayuda de IA para lograr un entorno de trabajo eficiente, estético y fluido.

파일 탐색기

  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git clone

설명 보기 ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

git

설명 보기 ▼

분산 버전 관리 시스템.
`commit`, `add`, `branch`, `checkout`, `push` 등의 특정 하위 명령어는 고유의 문서가 따로 있습니다.
더 많은 정보: <https://git-scm.com/docs/git>.

git init

하위 명령어 실행:

git clone {{https://example.com/repo.git}}

특정 레파지토리 위치에서 Git 하위 명령어 실행:

git status

주어진 설정으로 Git 하위 명령어 실행:

🔍

kitty

설명 보기 ▼

빠르고 기능이 풍부한 GPU 기반 터미널 에뮬레이터.
더 많은 정보: <https://sw.kovidgoyal.net/kitty/>.

kitty

새로운 터미널 열기:

kitty --title "{{title}}"

지정된 제목으로 창 열기:

kitty +kitten themes

테마 선택기 내장 기능 시작:

🔍

zsh

설명 보기 ▼

Z SHell, Bash 호환 명령줄 인터프리터.
관련 항목: `bash`, `!`, `^`.
더 많은 정보: <https://zsh.sourceforge.io/Doc/Release/Invocation.html#Invocation>.

zsh

대화형 셸 세션 시작:

zsh -c "{{echo Hello world}}"

특정 [c]명령 실행:

zsh {{path/to/script.zsh}}

특정 스크립트 실행:

🔍

chsh

설명 보기 ▼

이 명령은 `chpass`의 별칭입니다.

tldr chpass

자세한 내용은 원본 명령을 참고하세요:

chsh

현재 사용자에 대해 특정 로그인 셸을 대화식으로 설정:

tldr chpass

자세한 내용은 원본 명령을 참고하세요:

🔍

pacman -S

설명 보기 ▼

This command is an alias of `pacman --sync`.

tldr pacman sync

View documentation for the original command:

🔍

yay

설명 보기 ▼

Yet Another Yogurt: Arch User Repository(AUR)에서 패키지를 빌드하고 설치합니다.
관련 항목: `pacman`.
더 많은 정보: <https://github.com/Jguer/yay#first-use>.

yay {{package_name|search_term}}

저장소와 AUR에서 패키지를 검색하고 상호작용하며 설치:

yay

저장소와 AUR의 모든 패키지를 동기화하고 업데이트:

yay -S {{package}} --noconfirm

AUR 패키지만 동기화하고 업데이트:

// repository documentation