Skip to content

Commit

Permalink
Add ocenaudio audio editor (fixes #155)
Browse files Browse the repository at this point in the history
  • Loading branch information
asdil12 committed Oct 5, 2023
1 parent ba4878e commit 9d3bc8d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions opi/plugins/ocenaudio.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import opi
from opi.plugins import BasePlugin

class Ocenaudio(BasePlugin):
main_query = 'ocenaudio'
description = 'Audio Editor'
queries = [main_query]

@classmethod
def run(cls, query):
if not opi.ask_yes_or_no('Do you want to install ocenaudio from ocenaudio.com?'):
return

opi.install_packages(['https://www.ocenaudio.com/downloads/index.php/ocenaudio_opensuse.rpm'], allow_unsigned=True) # rpm is unsigned

0 comments on commit 9d3bc8d

Please sign in to comment.