Skip to content

Commit

Permalink
check if any aliases can be found on the flatpaks and return early if so
Browse files Browse the repository at this point in the history
  • Loading branch information
MrLoLf committed Jun 24, 2024
1 parent 7766bde commit ad3eab6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ def main():
alias_name = app_name.split()[0].lower()
aliases[alias_name] = app_id

if not aliases:
print("No flatpak apps installed.")
return
# Create aliases for all apps
create_alias(aliases)

Expand Down

0 comments on commit ad3eab6

Please sign in to comment.