TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

GSoC 22: Adding features to Thunar file manager

64 pointsby severinealmost 3 years ago

3 comments

unwindalmost 3 years ago
I haven&#x27;t used Thunar, but I wrote a GTK+-based file manager that was fairly popular Way Back When (late 90s, early 00s perhaps) called &quot;gentoo&quot;.<p>Congratulations for landing a GSoC gig of course, that must be awesome. A project I worked on ages ago almost tried to apply, but all we got was the t-shirt. :)<p>My take on the ideas:<p><i>Undo&#x2F;Redo</i> sounds like a lot of work, at least if it is going to be integrated well and supported for many operations. Again I don&#x27;t know Thunar, but I guess you&#x27;re going to have to figure out if there is a command abstraction internally, and start storing a log of executed commands so that undo can compute the reverse action. I guess some commands (&quot;delete&quot; comes to mind) are really hard to undo without rather intricate changes such as inventing a trashcan and moving things there, and so on. It seems clever to start with this, it&#x27;s a real heavy-weight.<p><i>File counts for folders</i> sounds strange; if there&#x27;s a size column I would of course assume it to show size for folders too, not a completely different thing like the number of contained objects. In gentoo there is an explicit command (&quot;GetSize&quot;, if I remember correctly) that recursively computes the size of a directory, and replaces the on-disk inode-level size of the directory with that. It&#x27;s explicit since it takes time (gentoo is not multi-threaded or async, so it will block) but on modern disks it will be very fast.<p><i>Picture-specific view</i> sounds like a great idea, especially if it&#x27;s possible to integrate it well so you don&#x27;t have to re-implement a lot to get access to basic file management commands for that view.
评论 #31606752 未加载
评论 #31606877 未加载
评论 #31609346 未加载
kevincoxalmost 3 years ago
This is great to hear! I use thunar mostly because it doesn&#x27;t force me into tabs like the &quot;big name&quot; file managers all seem to do. It is snappy and stable and does almost everything I want.<p>The undo feature will be a really nice touch.
评论 #31608936 未加载
raffraffraffalmost 3 years ago
Right mouse drag. Please. If you want a demo, fire up Windows, grab a file or folder with the right mouse button and pull it somewhere. When you release the right mouse button you get a menu, ie: move, copy, create shortcut etc. Even after using Linux almost exclusively for 15 years I still miss this.