RcloneTray simple GUI prototype

Hello,

I had the idea about using Rclone in GUI tool like Mountain Duck. I have this idea from long time, but found some spare time this weekend, anyway, I do some prototype as a hobby project, it’s not 100% functional yet, but have plan and want to develop the project.

Briefly, my plan is:

  • have GUI for managing remotes
  • mount/unmount tasks
  • upload/download tasks (to local directory which is covered by the sync command)
  • servings wasn’t planned but also wasn’t hard to implement so I added it

I have using JavaScript with Electron as a “framework” (tried to do with Go and libui+systray but met some limitations, and to be honest, I have very basic knowledge about Go programming).

Since I am using mainly macOS, and just test on GNU/Linux and Windows for some “big” issues. Also only mac package is uploaded in releases.

Don’t get me wrong, Mountain Duck seems to be good piece of software, but is proprietary software, and I am not enjoying of paying for something that will use sporadically)

I will be glad to hear any feedback, suggestions and criticism.

Project is on https://github.com/dimitrov-adrian/RcloneTray

Regards,
Adrian

P.S. Sorry for my bad English

3 Likes

https://forum.rclone.org/t/prototype-for-a-nicer-built-in-web-gui/7443/9

https://forum.rclone.org/t/rclone-gui-suggestions-needed/7193/50

You can check these 2 active discussions about GUIs

This looks interesting and timely :smile:

Rclone has recently gained a complete rest api so instead of shelling out to rclone, you could run rclone rcd and use the rest API. You’ll need the latest beta and you can check the beta docs out here: https://tip.rclone.org/rc/ Using the REST API will be more efficient than shelling out to rclone, especially if you can re-use the remotes. So if you list fs=“drive:”, remote="" then fs=“drive:”, remote=“dir” rclone doens’t have to remake the connection to drive and can re-use its directory cache etc.

I’ve been considering building a GUI in something like react so it runs in the browser and is thus portable. Rclone could potentially be distributed with something like that.

I’ve not used electron - how different an experience is that?

1 Like

@gelsas thanks for the reference, I already read the topics

@ncw thanks for the point, I didn’t know the rest API covers the configuration, this could simplify a lot of my implementation, and be more reliable. Unfortunately, the rest API do not provide mount ability (which is critical in the mine idea), if leaving the serving commands for now.

In my case, I prefer for simple UI to not use react and add extra weight, but to create elements with simple JS code. Electron is distributed chromium helping apps to render GUI via HTML, CSS and JS. I decided to use Electron because have good support for system tray and the fact provide an easy way for prototyping.

Actually I do not do anything with the concrete object from remotes or directories, I cant get benefits from caching.

I am focusing on local usage (but allowing to work with rest and remote rclone instances sounds attractive too). I am not targeting operations like syncing between remotes, or to visually manage files over a remotes. Instead easy access to mount, upload from local to remote and download from remote to local.

1 Like

The API could cover mounting. I think it would probably be best to launch a new process to do it though.

In my test with react, the core library is only 35k gzipped which doesn’t seem too excessive.

How easy is it to package an Electron app? Preferably for windows/linux/macOS?

Ah OK!

It’s quite ease, I am using electron-builder npm package for this purpose, just run command and it packs the app in suitable format for the target platform.

But as far as I understand your idea, is to create a web server with a client for the rest, then may be it’s not the right tool. May be it will be more suitable if you separate the client from the rclone itself, and distribute UI for managing remote rclone instance (meaning hosted rclone as daemons), so then you just need to create a webapp that can communicate with this instance, may be could be hosted on some cdn or distribute via electron it doesn’t matters. Which in fact have different approach from RcloneTray and provide different type of usage.

I think it is good to have options here!

Yes, exactly.

I hope there will be an update for this great piece of software someday.. ?

I miss support for auto mounting on startup, and most of all I miss crypted support.

I hope to see an update someday.. :wink: