From 0568f51fd8d04ff834f1df66ecdb55daa3a02dc9 Mon Sep 17 00:00:00 2001 From: developomp Date: Fri, 6 May 2022 17:41:00 +0900 Subject: [PATCH] added dconf editor setup script --- src/setup/apps/dconf-editor.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/setup/apps/dconf-editor.py diff --git a/src/setup/apps/dconf-editor.py b/src/setup/apps/dconf-editor.py new file mode 100644 index 0000000..0bdc1e7 --- /dev/null +++ b/src/setup/apps/dconf-editor.py @@ -0,0 +1,9 @@ +from src.util import flatpak_install + +name = "dconf editor" + + +def setup(): + """GUI application for editing dconf""" + + flatpak_install("ca.desrt.dconf-editor")