3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-23 15:45:53 +00:00
Brooklyn/plasma/kcms/keyboard/kconf_update/kxkb_resetoptions.awk
2022-04-02 18:24:21 +05:00

14 lines
165 B
Awk

#! /usr/bin/awk -f
# - Input:
# Options=foo
#
# - Output:
# ResetOldOptions=true
BEGIN { FS = "=" }
$1 == "Options" && $2 != "" {
print "ResetOldOptions=true"
}