This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # systemd-resolved.conf DNS 설정 자동화 스크립트 | |
| # 작성: Grok (2025-10-29) | |
| # 사용: sudo bash resolved-dns-setup.sh | |
| # 동작: /etc/systemd/resolved.conf에 DNS=8.8.8.8 1.1.1.1과 Domains=~. 추가 > restart systemd-resolved | |
| # 주의: 기존 [Resolve] 섹션에 추가/덮어쓰기 (백업 생성) | |
| set -e # 에러 시 중단 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # WireGuard wg0 자동 복구 타이머 설정 스크립트 | |
| # 작성: Grok (2025-10-28) | |
| # 사용: sudo bash wg-restart-setup.sh | |
| set -e # 에러 발생 시 스크립트 중단 | |
| echo "=== WireGuard wg0 자동 복구 설정 시작 ===" | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # Zellij 설치 스크립트 | |
| # 버전: v0.43.1 | |
| set -e # 오류 발생 시 스크립트 중단 | |
| # 색상 정의 | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | 

