• 0 Posts
  • 35 Comments
Joined 11 months ago
cake
Cake day: January 31st, 2024

help-circle

  • Jellyfin/Plex like many have mentioned.

    I personally like Syncthing for petty much everything else. For general file syncing of course. But also with Joplin pointed to a synced directory for notes. With keepass as a password vault. With synced config directories for some apps across devices like newsboat for RSS, and neomutt for email. I also used to use it with rtorrent via a watch directory, though I currently am using a seedbox for that purpose.

    VPN (openvpn/wireguard) is a good idea if you want to access your services outside your local network, without exposing them all globally.











  • They can be slow to adopt changes. I think the Mozilla foundation getting more funding, staffing, and refocusing on their browser would be the better solution.

    While Chromium is an open source project, it is still developed and maintained by Google. For something as important as a web browser, I think it’s imperative that there’s an option outside of their control.


  • That’d certainly be a good feature, but it feels to me like it’s a fairly niche need. And as per that post, it’s also a big technical effort. I can see why there isn’t anything in the way of development updates.

    That is me being a bit of an apologist for Firefox though. If you consider Firefox unusable because of that, then that’s a pretty valid frustration.

    Still, I’d encourage you to try and find a way to make it work for you because Chrome is evil.






  • It doesn’t copy data, no. Symlink is short for symbolic link. So it’s a pointer to another location. But it might be useful for you. Taking a guess at your goal, here’s a relevant example.

    Say you moved all of your emulation stuff stored under /media/largehdd/retroarch. You could then symlink that directory to ~/.config/retroarch like so:

    ln -s /media/largehdd/retroarch ~/.config/retroarch

    That data is still stored on the large drive but will now also show under that symlinked directory.