Skip to content

Instantly share code, notes, and snippets.

View sephid86's full-sized avatar

시티에이스 sephid86

View GitHub Profile
@hywol
hywol / arch-secureboot.md
Last active February 26, 2026 15:41
아치 리눅스 그놈 + Win11 22H2 Secure Boot 설치

들어가기 전에

필자는 HP Pavilion x360 노트북에 리눅스를 운용하고 있으며, 데스크탑에는 한때 SSD까지 더 달면서 리눅스 듀얼부팅을 운용했었지만 귀차니즘으로 인하여 가상머신을 사용할 계획이다.

아치 리눅스를 쓰면서 Win11로 발로란트를 하고 싶은 유저들이나 Windows 보안의 보안 부팅 관련 경고를 보기 싫은 유저들만 이 방법을 사용하길 바란다.

아치 리눅스 설치

아치 리눅스는 Secure Boot를 지원하지 않는다. 그래서 설치 전에는 Secure Boot를 끄고 설치해야 한다.

@mxdevmanuel
mxdevmanuel / powermenu.sh
Created July 30, 2021 18:45
Sway power menu
#!/usr/bin/env bash
op=$( echo -e " Poweroff\n Reboot\n Suspend\n Lock\n Logout" | wofi -i --dmenu | awk '{print tolower($2)}' )
case $op in
poweroff)
;&
reboot)
;&
suspend)