adding --type string to create command in installer script if xfconf setting does not exist

This commit is contained in:
Grassmunk 2020-06-26 13:24:23 -07:00
parent 512d51b3d2
commit 74f4a8dbfe
1 changed files with 1 additions and 1 deletions

View File

@ -425,7 +425,7 @@ class InstallGUI:
xfconf_query_path,
"--channel", channel,
"--property", prop,
"--create",
"--create", "--type", "string",
"--set", new_value
]
subprocess.check_call(args, stdout=subprocess.DEVNULL)