From cf1920265a2cb1d042f64fc3b56510e73d6a13f7 Mon Sep 17 00:00:00 2001 From: developomp Date: Fri, 6 May 2022 20:31:15 +0900 Subject: [PATCH] added GNOME calendar setup script --- src/setup/apps/calendar.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/setup/apps/calendar.py diff --git a/src/setup/apps/calendar.py b/src/setup/apps/calendar.py new file mode 100644 index 0000000..0e2716a --- /dev/null +++ b/src/setup/apps/calendar.py @@ -0,0 +1,9 @@ +from src.util import flatpak_install + +name = "Calendar" + + +def setup(): + """GNOME calendar""" + + flatpak_install("org.gnome.Calendar")