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

14 lines
165 B
Awk
Raw Normal View History

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