From b5b07cb4fac1d39f0551a7572d1674376c410d6e Mon Sep 17 00:00:00 2001 From: developomp Date: Wed, 11 May 2022 20:23:49 +0900 Subject: [PATCH] switched GNOME calendar source from flatpak to Arch Linux repo --- src/setup/apps/calendar.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/setup/apps/calendar.py b/src/setup/apps/calendar.py index 0e2716a..bc3a5ac 100644 --- a/src/setup/apps/calendar.py +++ b/src/setup/apps/calendar.py @@ -1,4 +1,4 @@ -from src.util import flatpak_install +from src.util import paru_install name = "Calendar" @@ -6,4 +6,5 @@ name = "Calendar" def setup(): """GNOME calendar""" - flatpak_install("org.gnome.Calendar") + # not using the flatpak version because it doesn't integrate well with the GNOME shell + paru_install("gnome-calendar")