mirror of
https://github.com/hyprwm/aquamarine.git
synced 2024-11-17 10:46:00 +01:00
9 lines
135 B
Bash
9 lines
135 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
while read -r id vendor; do
|
||
|
[ "${#id}" = 3 ] || exit 1
|
||
|
|
||
|
printf "\t__AQ_PNP_PROP(\"%s\", \"%s\"),\n" "$id" "$vendor"
|
||
|
done
|
||
|
|