Files
arthur-os/bin/omarchy-hw-intel
2026-04-28 12:03:46 -04:00

6 lines
178 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Detect whether the computer has an Intel CPU.
[[ $(grep -m1 "vendor_id" /proc/cpuinfo 2>/dev/null | cut -d: -f2 | tr -d ' ') == "GenuineIntel" ]]