diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2025-07-17 19:27:53 -0700 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2025-07-17 19:27:53 -0700 |
commit | 49ae403db86071f180759e9fe8c8d9a28a0e938c (patch) | |
tree | 1ebb014e0dc3be848abba363aa9c5a2e97fc9807 /net/onedrivegui/files/patch-src_global__config.py | |
parent | devel/hyprwayland-scanner: update to 0.4.5 (diff) |
net/onedrivegui: New port: simple GUI for OneDrive client with multi-account support
A GUI for FreeBSD/Linux OneDrive Client with multi-account support.
Feature Highlights
- Management and configuration of multiple OneDrive accounts.
- Asynchronous real-time monitoring of multiple OneDrive accounts.
- Setup wizard for easy OneDrive profile creation and import.
- Auto-sync on GUI startup.
- Support for GUI-based login process.
- System tray (if supported by your desktop environment).
- Start minimized to tray/dock.
- Input validation to prevent configuration of incompatible OneDrive client
options.
- Progress monitoring of multiple simultaneous file transfers.
- Import and management of SharePoint Shared Libraries.
- Tooltips with brief explanations of various OneDrive Client configuration
options.
- Prompt for re-sync authorization to prevent unexpected data loss.
Diffstat (limited to 'net/onedrivegui/files/patch-src_global__config.py')
-rw-r--r-- | net/onedrivegui/files/patch-src_global__config.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/onedrivegui/files/patch-src_global__config.py b/net/onedrivegui/files/patch-src_global__config.py new file mode 100644 index 000000000000..3455329b4b49 --- /dev/null +++ b/net/onedrivegui/files/patch-src_global__config.py @@ -0,0 +1,11 @@ +--- src/global_config.py.orig 2025-06-16 11:23:57 UTC ++++ src/global_config.py +@@ -7,7 +7,7 @@ from configparser import ConfigParser + from configparser import ConfigParser + + +-DIR_PATH = os.path.dirname(os.path.realpath(__file__)) ++DIR_PATH = "/usr/local/share/onedrivegui" + PROFILES_FILE = os.path.expanduser("~/.config/onedrive-gui/profiles") + + |