mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 04:44:15 +02:00
### Features
- Applications search
- Now when you right-click a selected application you can:
- retrieve its information
- retrieve its commit history
- downgrade
- install and uninstall it
- "About" window available when right-clicking the tray icon.
### Improvements
- Performance and memory usage
- Adding tooltips to toolbar buttons
- "Update ?" column renamed to "Upgrade ?"
- Management panel title renamed
- Showing runtime apps when no app is available
- Allowing to specify a custom app translation with the environment variable **FPAKMAN_LOCALE**
- Adding expiration time for cached app data. Default to 1 hour. The environment variable **FPAKMAN_CACHE_EXPIRATION** can change this value.
- Now the application accepts arguments related to environment variables as well. Check 'README.md'.
- Minor GUI improvements
- Notifying only new updates
- New icon
- Progress bar
19 lines
657 B
Python
19 lines
657 B
Python
import os
|
|
import subprocess
|
|
from typing import List
|
|
|
|
from fpakman.core import resource
|
|
|
|
|
|
def run_cmd(cmd: str, expected_code: int = 0, ignore_return_code: bool = False) -> str:
|
|
res = subprocess.run(cmd, shell=True, stdout=subprocess.PIPE, env={'LANG': 'en'})
|
|
return res.stdout.decode() if ignore_return_code or res.returncode == expected_code else None
|
|
|
|
|
|
def stream_cmd(cmd: List[str]):
|
|
return subprocess.Popen(cmd, stdout=subprocess.PIPE, env={'LANG': 'en'}).stdout
|
|
|
|
|
|
def notify_user(msg: str, icon_path: str = resource.get_path('img/logo.svg')):
|
|
os.system("notify-send {} '{}'".format("-i {}".format(icon_path) if icon_path else '', msg))
|