Skip to content

Commit

Permalink
[aur:1.11] Drop deprecated parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Aug 12, 2024
1 parent 2d2c9eb commit 2e300d1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions aur/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

from albert import *

md_iid = '2.3'
md_version = "1.10"
md_iid = "2.3"
md_version = "1.11"
md_name = "AUR"
md_description = "Query and install AUR packages"
md_license = "MIT"
Expand Down Expand Up @@ -113,16 +113,14 @@ def handleTriggerQuery(self, query):
id="inst",
text="Install using %s" % pacman,
callable=lambda n=name: runTerminal(
script=self.install_cmdline % n,
close_on_exit=False
script=self.install_cmdline % n + " ; exec $SHELL"
)
))
actions.append(Action(
id="instnc",
text="Install using %s (noconfirm)" % pacman,
callable=lambda n=name: runTerminal(
script=self.install_cmdline % n + " --noconfirm",
close_on_exit=False
script=self.install_cmdline % n + " --noconfirm ; exec $SHELL"
)
))

Expand Down

0 comments on commit 2e300d1

Please sign in to comment.