bpozdena / OneDriveGUI

A simple GUI for OneDrive Linux client, with multi-account support.
GNU General Public License v3.0
704 stars 33 forks source link
gui linux onedrive pyside6 python qt

OneDriveGUI

GitHub all releases

A simple GUI for Linux OneDrive Client, with multi-account support.

GUI_git

Feature highlights

Known Limitations

Compatibility

Other notes

Running and Installing OneDriveGUI

:exclamation: Ensure the latest version of OneDrive for Linux is installed based on instructions for your distro.

AppImage

1) Download the latest OneDriveGUI-*-x86_64.AppImage from the release assets 1) Make the .AppImage file executable with chmod +x ./OneDriveGUI-<**version**>-x86_64.AppImage and run it.

:memo: Users of Ubuntu 22.04+ may also need to install FUSE2 with sudo apt install libfuse2

AUR

Running from source

1) Ensure Python3 and pip are installed on your system. 1) Clone or download content of this repository and cd into the resultant folder.

    git clone https://github.com/bpozdena/OneDriveGUI.git
    cd OneDriveGUI

1) Install dependencies:

    python3 -m pip install -r requirements.txt

1) Start OneDrive GUI:

    cd src/
    python3 OneDriveGUI.py
Optionally, you can detach the GUI from terminal by using the bellow command:
```sh
cd src/
nohup python3 OneDriveGUI.py > /dev/null 2>&1&
```

Use

Additional Notes