Similar to what most web browsers do, it would be very handy to give Thunar the option to remember the last set of tabs and locations that were open and to reopen then upon restart. I can't find anything in the UI nor any hidden option (maybe I missed it if it's hidden) but please consider adding this feature (with a way to configure it in the UI).
Designs
Child items
0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items
0
Link issues together to show that they're related.
Learn more.
I love Xfce and would love to help and contribute to the project. I've been working in QA for 15 years (so I'm more than willing to help test and log defects) and while I know enough Java to get by, I wouldn't really say I am a "good" programmer, though I am always willing to learn. Besides generic C/C++ tutorials, are there any resources to get started specifically in Xfce development? I can browse the code here but I don't really know where to start. :)
What you basically want, is to add a xfconf setting ( the ones displayed by xfce4-settings-editor) which hold a list of uris to be opened on startup.
For that, you can take a look at some other xfconf setting, e.g. "hidden bookmarks", which as well uses a list of uris:
https://gitlab.xfce.org/xfce/thunar/-/blob/master/thunar/thunar-preferences.c#L188
Than you need to find out where in thunar-window.c that list needs to be applied ... and so on :)
Doesn't work if the thunar window is closed by clicking File > Close Window (Ctrl+Q)
Also doesn't show the warning for closing window with multiple tabs if tried to close as above. The warning is shown if we try to close the thunar window by clicking x button on the window titlebar.
A new issue should be opened for this since it isn't specific to the newly introduced preference (the problem is that delete-event is triggered when clicking the X button but not when destroying the widget directly). Nice catch none the less ;-)