From 571ca1eb70f8d2e1e45b212e026568cd36f534ff Mon Sep 17 00:00:00 2001 From: developomp Date: Sun, 29 May 2022 11:23:52 +0900 Subject: [PATCH] add tenacity setup script (#79) --- src/setup/apps/tenacity.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/setup/apps/tenacity.py diff --git a/src/setup/apps/tenacity.py b/src/setup/apps/tenacity.py new file mode 100644 index 0000000..0839ae7 --- /dev/null +++ b/src/setup/apps/tenacity.py @@ -0,0 +1,12 @@ +# https://github.com/tenacityteam/tenacity-flatpak-nightly + +from os import system + +name = "Tenacity" + + +def setup(): + """Safe audacity fork""" + + system("flatpak remote-add tenacity oci+https://tenacityteam.github.io/tenacity-flatpak-nightly") + system("flatpak install tenacity org.tenacityaudio.Tenacity")