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