mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
7 lines
216 B
Bash
Executable File
7 lines
216 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Detect whether the computer is an Asus ROG machine.
|
|
|
|
[[ "$(cat /sys/class/dmi/id/sys_vendor 2>/dev/null)" == "ASUSTeK COMPUTER INC." ]] &&
|
|
grep -q "ROG" /sys/class/dmi/id/product_family 2>/dev/null
|