11 lines
146 B
Bash
11 lines
146 B
Bash
|
|
||
|
name="arch custom"
|
||
|
description="install's custom arch things"
|
||
|
|
||
|
suscript ./
|
||
|
|
||
|
conditionfn is_arch
|
||
|
|
||
|
is_arch() {
|
||
|
grep -q "arch" /etc/os-release
|
||
|
}
|