from HaraldvonBlauzahn@feddit.org to linux@lemmy.ml on 14 Jun 11:58
https://feddit.org/post/14167855
Why software do you use in your day-to-day computing which might not be well-known?
For me, there are two three things for personal information management:
-
for shopping receipts, notes and such, I write them down using vim on a small Gemini PDA with a keyboard. I transfer them via scp to a Raspberry Pi home server on from there to my main PC. Because it runs on Sailfish OS, it also runs calendar (via CalDav) and mail nicely - and without any FAANG server.
-
for things like manuals and stuff that is needed every few months (“what was just the number of our gas meter?” “what is the process to clean the dishwasher?”) , I have a Gollum Wiki which I have running on my Laptop and the home Raspi server. This is a very simple web wiki which supports several markup languages (like Markdown, MediaWiki, reStructuredText, and Creole), and stores them via git. For me, it is perfect to organize personal information around the home.
-
for work, I use Zim wiki. It is very nice for collecting and organizing snippets of information.
-
oh, and I love Inkscape(a powerful vector drawing program), Xournal (a program you can write with a tablet on and annotate PDFs), and Shotwell (a simple photo manager). The great thing about Shotwell is that it supports nicely to filter your photos by quality - and doing that again and again with a critical eye makes you a better photographer.
threaded - newest
xpipe – I use it to SSH into any of my servers, cluster nodes or directly into docker containers without having to remember hostnames, IPs, users. It can also bring your useful scripts to said ssh session without “installing” them on the target device, which is great because you don’t have to set it up for every new server. Also the dev is a really nice guy.
Portmaster + SPN – I use it to route each app through different VPN paths with multihop support and per app firewall rules. (e.g. one app via Denmark, another via a random country, third app no VPN, fourth app gets no internet at all etc.) It really gives you full control over the traffic. afaik there is no other all in one app like this.
wdfs - It’s an old project that is patched by this random github user. It’s the only way I found to mount a webDAV storage cleanly into a directory from a bash script without fucking with my fstab or being root or giving specific privileges to my user. I mount it from a bash script because that way I can use KDE wallet to store the credentials instead of having a plain text file somewhere on my fs, the script waits until the wallet is unlocked, then reads the credentials from it and mounts the webDAV to a path in my home. That is more accessible to apps and other scripts (e.g. recent files) instead of doing it via Dolphin, which generates a random string in the path every time when opening network storage.
Can rclone mount it transparently? I thought it is more like a one time copy / sync.
What I mean by that is that the remote storage should look like a normal directory to the rest of the system and any reads and writes should go over the network directly to the remote without occupying local disk space.
Also it seems to me that you have to write your credentials to the rclone config file, which I explicitly don’t want.
Rclone can do file mounts as well as sync.
didn’t know that, thank you!
I’ve never heard of xpipe until now - I just set it up and this is amazing
Pithos, it’s a desktop client for Pandora.
It’s the first time I see a Ban. This must be really bad…
Genocide supporting mod probably disliked the username.
That’s just speculation and accusation without proof. Let us not do this here.
Every day?
rio -e ‘tmux attach -t#’
). Because terminals crash, because it survives session restarts, because it lets me log in remotely and continue what I started in my desktop, and because it works over ssh and having a consistent multiplexer environment across machines is nice. I used sceen for years before discovering tmux, and have tried almost every other terminal multiplexer; and none add any significant value for me over tmux.I’m currently using Rio as my terminal. It has bugs, but it’s actively developed and regularly releases will fix one more thing. It has both ligature and sixel support, and it’s wildly fast and far, far less memory intensive than either kitty or ghostty, which are both pretty fat. I am not including it in “the list” because some remaining bugs are pretty big, like randomly crashing when it gets resized or sees some sequence of asci escape codes. It’s not much of an issue because I run everything in tmux, and it crashes less with every release, but I hesitate to recommend it until it’s more stable.
Interesting. Have you tried Stumpwm as well, and if so, how would you compare it to Herbstluftwm?
Hooray to Helix!
+1 for helix. I was new to linux and TUI editors. The vim tutor was a good intro to the concept of modal editors, but needed lsp and syntax highlighting. At the time I struggled a lot with configs, so neovim was out. Helix is just a fantastic, batteries included experience. Approachable for beginners, but feature rich for novices.
Edit: typo, grammer
Right now https://jeena.github.io/recoder/ which I just released and here is why (copied from the website):
🎬 Why Recoder?
I used to edit family videos in Kdenlive without a problem — it handled footage from all our devices without complaining. But then I switched to DaVinci Resolve, and suddenly nothing worked right. My Sony Alpha 7C, my Galaxy S24, and my wife's iPhone all produced files that Resolve couldn’t handle without transcoding.
😤 Too Much Fuss, Too Many Steps
Every time I wanted to edit, I had to hunt down the right ffmpeg settings and manually run them on each video — a frustrating and repetitive task.
My typical workflow is simple: I create one folder per event on an external HDD and drop in videos from all our cameras. A script renames the files based on the date and time so I can easily sort them. But for Resolve, everything has to be transcoded to DNxHD — which only supports resolutions like 1920×1080 and 1280×720.
🔄 Vertical Videos? Extra Pain
That also meant vertical videos couldn’t work. So now, I rotate them during transcoding to preserve resolution and rotate them back in Resolve during editing.
✨ Enter Recoder
I built Recoder to automate this annoying step — so I could spend more time editing memories and less time fiddling with command-line tools.
GNU parallel, to run commands on all cores, and for its filename pattern substitution.
For example:
ls *.flac | parallel ffmpeg -i {} {.}.mp3
encodes a directory of FLAC files to MP3.parallel -a <(ls *.flac) -a <(ls *.mp3) --xapply copytags {1} {2}
then copies each FLAC file's metadata to the corresponding MP3 file (which ffmpeg already does, just to illustrate the--xapply
option).edit:
copytags
is https://github.com/DarwinAwardWinner/copytags if that's useful for anyone.Parallel is great!
Alternatively your second command can be written as:
parallel “copytags {1} {2}” ::: *.flac :::+ *.mp3
.Also it is nice to exec commands on multiple devices.
KDE's Dolphin + Konsole's integration to Dolphin is great for seamlessly managing files with an UI and terminal hybrid.
Though closed source (overly dramatic music plays), the text editor Sublime Text works great, and at least with major version 3 (last I checked it was in version 4), it can be converted to AppImage without major issues (at worst, paths with spaces have issues).
Firejail is great for starting specific programs offline.
Newsboat is the best RSS feed reader I could find for Linux, specifically due to, with its inbuilt macros, I can set it up to open in new tabs several posts from a comically large amount of feeds.
How does the dolphin/konsole integration thing work? I’m curious.
You press F4 (I believe) in Dolphin and it spawns “tab” of Konsole pointing to curre t location inside Dolphin window.
Whoa, I had no idea! I knew about alt+shift+F4 to open a terminal in the current folder, but that spawns a whole separate konsole instance, F4 is amazing, thank you!
Not Linux exclusive, but freefilesync.org and goaccess.io my beloved
Easy file sync and easy log checking
Qalculate!, the calculator I use every time I need to do a calculation, especially if it involves units or currency conversion. Does everything I’ve ever needed out of an everyday calculator (even symbolic calculation and exact results), while keeping the usual simple calculator interface.
+1 for qalculate! I use the cli regularly for doing quick calculations while working in the terminal, it’s awesome!
why not
bc
then?FreeTube, a desktop client to watch YouTube videos, without an account. Why not use a browser without an account? Well, it has a watch history, favorites and subscriptions as if you had an account - but its all “offline” account, without Google involved (besides watching their video). So it manages an account with subscriptions, without YouTube account. Plus it integrates an ad blocker and SponsorBlock, and has a few more features on its sleeve.
kdotool, a xdotool like program for KDE on Wayland. Just learned about it when setting up another application. But I will use it for independently too.
There are more, but this is what came to my mind right now.
Upvoted for FreeTube.
What do you use to send YouTube links to FreeTube? Personally I'm using LibRedirect https://libredirect.github.io/
I don’t. I just copy the link and enter it in FreeTube directly.
I like game emulation and to manage my ROM library, I use Geode-GEM. It is simple but cusomizable app to manage your ROM based on console and emulator you have.
KDE Connect
- https://kdeconnect.kde.org/
I've used it a lot just to control audio or video playing on my computer from my phone. (Sometimes when I'm sat at my computer with multiple windows and workspaces open, I even find it easier just to hit my phone's lockscreen to pause the music.)
I'm starting to use some of its other features, too. E.g. copying & pasting and sharing files between phone and computer.
There's more too I need to explore.
- https://community.kde.org/KDEConnect
(Unfortunately, sometimes I get a 'device unreachable' error when both devices clearly have a working connection to the same router.)
I just introduced my partner to this a week ago. Trying to slowly convert him into a Linux user haha. It works with Windows too!
I’ve been using that a lot, but I wish there was a “disconnect” on the phone’s app, rather than keeping a persistent connection.
Kde connect is great. You can get notifications on pc and read texts fully in messages. I also use it to file share and send 2fa codes.
Localsend is rad, super useful: localsend.org
Send any file across different devices over the network. FOSS and fast. Highly recommend.
I mean if it’s local network I’d use kde connect. It has a bazillion features, but sending files through the normal share button is one of them.
Localsend works on Mac and windows as well
KDE Connect also works on Mac & Windows.
Definitely should use whatever software you’re comfortable with.
But I seriously cannot recommend KDE Connect highly enough. It’s a great piece of software
You can send to different machines then your kde connect one with localsend, e.g. wife’s PC, kid’s tablet, brother’s phone, etc.
Espanso Text Expander. Its not Linux specific but its got so many uses. You can even use it with bash scripts to have essentially alises/text shortcuts for short or massive amounts of text. I use it for so many code snippets and template texts in Neovim and other applications that involve typing.
Yea this is great ty!
I used eapanso for a few years, but kept running in to issues with it spawning hundreds of versions of itself.
I really miss it though. Would you say it has matured?
I’ve used espanso for about 4, maybe 5 years and haven’t encountered this issue. I even have to compile it myself because it’s daemon mode uses systemd on Linux and I dont run a distro that uses systemd and had to modify the source code slightly. I do run it in managed mode, essentially invoking it from a startup script when my window manager starts up.
Long story short, what you encountered might have been related to how it integrates with the init system and you might try and run it directly from a startup script. Simple test is to just try and install the latest version and see if you have the same issue.
sshuttle github.com/sshuttle/sshuttle
need it all the time, super minimal, easy to usw
Aside from ones listed here:
System Tools
Productivity Tools
Media & Entertainment
Happy to list out the self hosted stuff too if there is interest.
I’d love your list of selfhosted stuff. I’m running a little server with TrueNAS Scale and it’s working really well.
Media & Content Management
Productivity, Documents & Task Management
Good Deeds
I have been running Jellyfin for a while now with great success, and prefer Immich over Photoprism. The rest look real interesting, especially Sterling PDF.
I currently use Immich for photo backup and whatnot. Would you say PhotoPrism is better than Immich?
I was using it for auto tagging of categories. I haven’t tried immich but I just moved my photos to my snapraid, so I might give it a shot. It looks like it’s come far since I looked last.
It does work really well. Backs up everything, the mobile app works. Though I am having trouble with it auto switching URL dependant on local or remote but I think that’s a me thing
You could give a try to running a gemini server like agate. It is text + file serving protocol similar to gopher.
en.m.wikipedia.org/wiki/Gemini_(protocol)
geminiprotocol.net/docs/faq.gmi
github.com/kr1sp1n/awesome-gemini
It is really good for organizing and distributing text, media and files like with gopher. And I think due to its simplicity, it is perfect for using it in a home or lab network.
.
Thanks, upvoting for those two.
I invented WinApps. nowsci.com/winapps
I had a conversation started with the org fr their takeover and they just dropped off. If anyone from there is reading this, please reach out.
For me it’s Perl’s rename, which of course cones in a variety of package names depending on the distro you use. In trying to find a link, I landed on this stack exchange answer that gives a great overview of how the tool works and the different packages available on different distros.
I have to bulk rename files every day, and using regex and the other features of Perl’s rename makes it so much easier to do.
Ed Along with rlwrap it gives me a very fast and powerful workflow.
Rlwrap It wraps around a program and gives it the ability to make use ofthe readline lib.
Screen I use it when I boot without X. Gives a very fast workflow, being able to switch between programs.
Mpv Multimedia powerhouse. Even works (pretty) well without X, with a framebuffer.
Ecasound Cli daw. Have several scripts to make a recording on the fly or to be able to jam.
ed (which is the more frugal, older brother of vi/vim) might indeed be a bit under-hyped. Which advantages does it have for you?
Funny thing a while ago I had a small side-project for a data collection task in my PDA - a kind of minimal database to record daily stuff. So, a PDA has limited screen space and typing speed, and I tried to make the UI with as little typing as possible. And then it dawned to me that I was essentially replicating ed’s interface!
Fun thing by the way, one can use Emacs without X, and then it is like screen - only with an editing window at the outermost shell.
And also, one can have the same space efficiency in text mode within X: Using the ratpoison or Stumpwm window managers.
Logseq for notes and task tracking. It’s an open source alternative to obsidian. Life saver for tracking stuff at work.
logseq.com
This. Thanks mate!
I agree
I started on Logseq, because I’m a contributing open source advocate. I fully intended to stay with Logseq.
However, it seems to indent everything in the markdown including headings, bullet points and so on. When one loads a document into a markdown editor, one ends up removing all these indents before the document becomes ‘valid’. They’ve made some other unusual design choices that mean the markdown doesn’t read very well in plain text. I used Logseq for a year.
There’s also a difficulty for me with getting help. For some reason Logseq help community seems to be based around the Discuss (sp?). It’s not easy to read because the lines are very short as it’s a messaging platform. The community is very very active though.
I eventually got frustrated with trying to debug my Markdown outside Logseq, and went looking for another vehicle.
Rather distressed, I installed Obsidian. It’s been designed with a more logical approach. To link to a heading in another document, the document is linked in a Wiki-like way (if you’ve chosen that format) with the heading separated by a hash symbol; in Logseq you get an unintelligible UUID plus all that indenting.
There’s a lot of help within the Obsidian community but some of it is locked down in medium paid-for content. However, the hundreds of Obsidian YouTube channels and videos, obsidianrocks and obsidian.md sites are very well authored. AI searches augment the rest, TBF I don’t really use Google proxies anymore.
Even though I’m a personal user, it’s worth it to me to buy a commercial licence to show my appreciation for the work that the two(?) developers have put in.
The plugins use the published API and are all (?) open source AFAICT.
Most of the issues I have with Obsidian are just related to my workflow. I think that there are probably plugins that will solve them.
I don’t expect to be looking for another note-taking app anytime soon and it’s been over a year since I started with Obsidian. Understanding templates opened my world up enormously. I haven’t started data-mining in any meaningful sense yet.
Just my tuppence.
I tried logseq to manage my notes at work and it just didn’t click with me.
I ended up using QOwnNotes www.qownnotes.org which might be not as polished, but it is very easy to start with. I don’t need nor want cloud/sync, and since this ones notes are plain .md files in a folder, it’s easy to back up (or edit) externally when needed. I like it for what it does.
Glad you found one that worked for you.
As far as I’m aware, Logseq also just uses .md files. I back those up regularly and I do use the cloud sync. The cloud sync lets me alternate use between my computer and my tablet for work. I could use just one device, but this was a significant advantage for me.
I also keep a separate log for personal work which I can add to via special shortcuts from my phone.
Great topic. I’m going to have to investigate some of these suggestions later.
Since my first pick, helix, was already mentioned here and i commented on it, I’ll add gitui. Git can be very overwhelming for me. Gitui arranges frequently used git commands in a sensible, visual layout and makes it easy for me to understand and interact with git.
For doing more complex tasks with git, you could have a look at jujutsu. It is really good and provides most of git’s power in an conceptually much simpler CLI interface.
Thanks for the rec! The anonymous branches and working-copy-as-commit subsuming git stashes is intriguing. I’ll give it a closer look when I have a chance.
Qalc. Best calculator ever hands down
You mean Qalculate, right? If so, I agree.
- -
✍︎ arscyni.cc: modernity ∝ nature.
SpeedCrunch for the win ! 😉
But seriously, compared to qalculate I prefer SpeedCrunch UI.
better than
bc
?Pinta is the main one that comes to mind. I don’t use it every day, far from it, and that’s a part of why I love it. On the rare occasion that I have to do some image editing, I load up Gimp and then proceed to fight against it for at least a whole day to make it do the simplest of things before finally ragequitting. Then I load up Pinta and actually get the task done in either minutes or hours at most.
It’s like old school MS Paint, but better. Simple, intuitive, no huge learning curve, just enough features to get my nonprofessional tasks done. It should be a distro default.
digiKam was the first Linux application I encountered that was so polished and useful for what it does that I tried to shoe-horn it into any and every DE I experimented with, as well as installing it onto my windows machines under KDE4Win.
Why not the Windows native version on the Windows machines?
Talking 10ish years ago. Today you can get KDE apps running on Windows as Native stand-alones, but at the time, you first had to install KDE4Win.
Sorry to thread jack. One little app I miss from Windows is a simple screengrab annotator? Wondering if people have anything to recommend.
Eg to circle some on screen text, add an arrow and maybe add some of my own text.
I cant get my Loigtech KB to screen grab, so I just use the Screengrab app in Mint, which is fine but zero annotation abilities.
I have tried Flameshot but it is a shitshow and doesn’t work properly and is unstable (for me) and doesn’t allow me to put it in the clipboard and paste in say Signal.
I think that is a signal limitation not a flameshot one.
Nah, I’ve had no issues pasting from the clipboard into signal, from either the Mint screenshot tool or Flameshot. Not sure what issue the top commenter is having…
Greenshot GPL3
…but also Linux.
I don’t have issues you are describing with flameshot, however a clipboard manager greatly enhanced the copy-ability between apps and certain websites (looking at you JIRA and Slack), including when the source is flameshot.
Perhaps not exactly what you need, but I have been using “scrot” and the magnificient drawing program Krita for the same result.
Ksnip does the trick for me
it’s a bit tedious but i usually just use libreoffice/openoffice impress to annotate on a screenshot made using xv
I use what’s built in KDE - Spectacle: github.com/KDE/spectacle
Does everything I need.
I’m not sure about the annotation part but I think spectacle supports that
solaar one of the best gui based apps for mouse settings
What problem does it solve?
dealing with logitech devices. i love their hardware, but i feel like they’re really bad at doing any kind of software… i know that there are alternatives for configuring logitech devices, but i quite enjoy solaar.
Man, I have so many apps, but here are a couple that I install first thing on a new install:
Timeshift is possibly at the top of the list.
Then Deja Dup.
Stacer
Strawberry
Open TV
It could be helpful if you explain what they do and how they relate to your computing needs. For example, I have been using Linux for over 25 years, and the only name in yor list which I have an idea about what it does is Deja Dup (personally, I use tar for backups, in a simple incremental setup).
I know Strawberry, because I use it too. It’s a music player, forked from Clementine years ago. I find it the best for my use case, as it can handle library by tags, do folder view for separate locations, do tag editing, lyrics and art download, etc. Can highly recommend!
UpNote. I use it like a combination of the gollum wiki described by OP, but I just put everything in there. I have watch and reading lists for things I want to check out, writing projects, notes for TTRPG games, I keep extensive notes on healthcare-related stuff, and so on. I like UpNote because it’s lightweight, has windows, linux, and android apps, and because it has a one-time $25 lifetime membership that does free syncing forever instead of a monthly subscription like most other things seem to. I’ve tried OneNote, Evernote, Obsidian, Joplin, AnyType, and a bunch of others and didn’t like them for various reasons, but UpNote is both pretty small and also has a pretty full-featured editor that can do rich text, all kinds of formatting, media files, etc.
The only thing I’ve run into that UpNote wasn’t ideal for is I started writing a novel a couple months ago and managing the structure and notes and all that got a little unwieldy so I picked up Scrivener. Still wish they had an updated linux client or there was some good, complete, feature-rich linux-native equivalent, but it runs pretty good under wine, so.
Well, my main reason to use Zim Wiki and Gollum is that all the information stays on my computers -no sync service is needed, I sync via git + ssh to a Raspberry Pi that runs in my home. And this is a critical requirement for me since as a result of many experiences, my trust in commercial companies that collect data to respect data privacy has reached zero.
The differences between Zim and Gollum are gradual: Zim is tailored as a Desktop Wiki, so each page is already in editing mode which is slightly quicker, while Gollum is more like a classical server-based wiki, which is normally accessed over the browser (but by default, without user authentication). The difference is a bit blurry since both just modify a git repo, and Gollum can be run in localhost, so it is good for capturing changes on a laptop while on the road, and syncing them later. A further difference is that Zim is a but better for the “quick but not (yet) organized” style of work, while Gollum is better for a designed and maintained structure.
Both can capture media files and support different kinds of markup, while always storing in plain text. Gollum can also handle well things like PDFs which are displayed in the browser, and supports syntax highlighthing in many programming langages, which makes it nice for programming projects - it is perfect for writing outlines and documentation of software, and I often work by writing documentation first.
Yeah, I have since discovered pCloud as a replacement for OneDrive and that I could just have everything saved to a pCloud directory to auto-sync… but IMO UpNote is worth the $25 anyway so I don’t mind. Also it requires considerably less effort to just install the android app vs setting up some kind of multi-device syncing with pCloud/equivalent and managing that myself. I guess I value convenience over privacy in this one area.
Thanks for the explanation re:gollum/zim, I was curious why you were using 2 different sets of software to accomplish what seemed like the same thing. My notes are definitely more of the ‘scribble some shit down and organize it later if I get around to it’ variety, but I stopped using zim because I wanted synced notes with multiplatform apps and also it felt a little archaic, and I wasn’t really using the real star feature of wikis (cross-linking) anyway, I just wanted something with a traditional tree structure.
ffmpeg - www.deb-multimedia.org . I edit podcast videos for distribution to subscribers. High-quality video produces very large files but if they’re only going to be watched on laptops, tablets, and phones, I can throw away a lot of bits without noticeably affecting quality on a phone screen.
And nothing does that better or faster than ffmpeg.
I’m trying Linux for the first time as soon as a serving hard drive arrives, bookmarking this thread!
In that case, the curated list of applications in the Arch wiki could be invaluable for you:
wiki.archlinux.org/title/List_of_applications
Also, if you need something, I’ve found it often to be a good strategy to sit and write down what you personally need from a software - what are your requirements, and then go and search which available software matches these. The other way around, there are just too many alternatives: Any larger distro has tens of thousands of packages, and you won’t have time to try them all.
I do a fair amount of pentesting and I’m on mobile, so I’ll just list software.
Trufflehog & nosey parker (both kinda suck, but there’s nothing better)
Subfinder
Nuclei
Credmaster
To name a few.
Check out earlybird as an alternative to trufflehog.
github.com/americanexpress/earlybird
Can you expand on these later when you have time?
You’ve heard of it for sure, but shout out to Audacity. I used Cool Edit Pro for years before having to switch to Adobe Audition. The UI in Audacity feels surprisingly familiar and it does what I need it to do.
I believe audacity was forked over issues with privacy or something like that.
I didn’t know that. Should I be using a fork instead? Name or link?
I don’t know the details, I’m afraid. That’s just my memory.
The name of the fork is: Tenacity tenacityaudio.org
The developers of the fork have a detailed history explaining why the fork happened: tenacityaudio.org/…/Introduction_and_Motivation.h…
Their mastodon account floss.social/@tenacity
I just removed it’s network access from the flatpak, I don’t make extensive use of it but it’s really handy to have at hand
auto-cpufreq to automatic CPU speed & power optimizer to improve battery life for Laptops.
Syncthing for syncing folders and files directly between your devices.
Also whatever software or driver I loaded to make this HP Thunderbolt Docking Station work with Linux.
AutoKey automation / word expander tool.
ALT + i/j/k/l
to ↑←↓→ globally, and more similar shortcuts.git commit -m '
CTRL + Shift + [
it surrounds the selected text with a tag:I’m likely not even harnessing AutoKey’s full capabilities and it’s already absolutely indispensable for being a huge time-saver and annoyance reducer.
- -
✍︎ arscyni.cc: modernity ∝ nature.
Steam added an excellent screen capture feature to their overlay, but I like being able to capture my screen anytime, not just when playing games with the steam overlay.
gpu-screen-recorder is the perfect tool for this, you set up a command to run at startup and the software records the last X minutes in the background, with barely any hardware utilization. Add a hotkey for another command that saves the recorded clip to a file, and boom, simple and efficient replay recorder. I’m honestly surprised this app wasn’t mentioned yet.
Ocenaudio for audio editing. It’s not FOSS but it’s native, simple to use, and doesn’t have backend library issues I kept having with audacity.
Try tenacity, it’s audacity fork, available on flathub. I have good experience with it.
I really like
units
. It feels much better to use than the calculator that pops up after a Google search.Cool! Though I’ll probably still use krunner for this
This looks amazing and I need to have it in my life. Thank you so much for sharing
units
is really powerful. I worked with the team there to appropriately support Gaussian units since it seems no other tool would—took a bit of retrofitting to support fractional exponents like “grams^1/2”, but I have yet to find another tool that handles this even remotely correctly.qpdf is handy for merging PDFs. Command line but quick to learn for most usage.
The Docker Engine makes hosting applications over your network easy, if you have spare hardware I highly recommend setting up your own server.
I would say Rymdport (github.com/Jacalz/rymdport). It’s a GUI for the magic-wormhole tool (another recommendation in itself). It let’s you easily and safely transfer files to another computer.
I use Localsend to send files between my computers. Also to family and friends if they are local at the time. I keep seeing magic-wormhole mentioned on Lemmy. Do you know if wormhole is better somehow? Is it worth me trying it?
Biggest difference is that wormhole will pass traffic between devices on different networks as long as both are routable. So it’s not limited to a local network connection.
Very different tool. Magic-wormhole is dead simple, works over CLI and requires no setup. It’s not dependant on computers being within the same LAN. I wouldn’t use it with non-technical people. For users with some skill Rymdport is an option for them to interface with magic-wormhole. The tool is great for transferring secrets when setting up computers for example.
gnome-network-displays let’s you cast your screen to a wireless display (Miracast) or to a Chromecast device.
It works with KDE no problem and even under Wayland.
It creates a virtual display that can be organized like any other display: unify with another screen or extend the desktop using your DE’s default method/UI. And then it uses standard screen sharing conventions to send content to that virtual display.
I don’t know what kind of dark arts the developer(s) employed to make this possible, but the end result is simple wireless display in Linux that just works! A MUST for using Linux in a business setting.
FlameShot. In my opinion, the best and most versatile screen capture app for Linux distros, especially if you use Gnome as your DE.
GitHub Application Manager (GAM): github.com/fmstrat/gam
It’s like
apt
for installing directly from Github releases. A plug, sure, but I still use it regularly for things like FreeCAD, Cura, OrcaSlicer, and so on.