Nice to see ULWGL pick up steam so quickly, figuring out the right version of Proton to run outside Steam has always been kinda weird and fiddly. Name really sucks ass though.
- 3 Posts
- 16 Comments
iusearchbtw@lemmy.sdf.orgto Firefox@lemmy.ml•Why does have to keep profiles hidden in "about:profiles" like they're illegal to have. It's quite literally the 1 feature stopping me from using it over Vivaldi. That and vertical tabs, ofEnglish203·1 year agoFirefox has my very favourite vertical tab system of any browser in the Tree Style Tab addon: https://addons.mozilla.org/en-US/firefox/addon/tree-style-tab/
I’m not too sure how to simplify jumping between profiles though. I haven’t used it so I can’t vouch for it, but maybe the Profile Switcher addon would work for you? https://addons.mozilla.org/en-US/firefox/addon/profile-switcher/
iusearchbtw@lemmy.sdf.orgto Linux@lemmy.ml•New Linux user here. Is this really how I'm supposed to install apps on Linux?English19·2 years agoI don’t know about Mac, but on Windows the Mullvad app doesn’t auto update. If you want to do it Windows style you can look for deb files (which are like installers) or AppImages (which are like standalone executables).
Most pieces of software give terminal instructions for Linux because different people might use different package manager frontends, but literally every Linux user has a terminal. It might seem daunting at first, but giving users commands to run in their terminal is a lot more simple than trying to walk them through repo management through the GUI, or just telling them to figure it out themselves.
iusearchbtw@lemmy.sdf.orgto Linux@lemmy.ml•New Linux user here. Is this really how I'm supposed to install apps on Linux?English201·2 years agoThe instructions on that page make it so that every time you run a system update, mullvad automatically updates as well. If you’re happy doing the updating yourself, you can download the
deb
file from here: https://github.com/mullvad/mullvadvpn-app/releases
ble.sh, for making regular bash a lot more user friendly with a single
source
.
Why does this quiz have so many fuckin distributions? If a newbie is looking for a distro to install, why would you ever recommend anything more niche than Ubuntu/Mint, or Endeavour if they’re interested in bleeding edge? I answered the questions as though I was new to Linux and got a massive list of every Ubuntu and Fedora derivative, with Manjaro sprinkled in for good measure.
iusearchbtw@lemmy.sdf.orgto sdfpubnix@lemmy.sdf.org•Can we roll back to server 0.18.x please?English12·2 years agoVoyager works after logging out and back in, if you’re looking for a short term solution?
iusearchbtw@lemmy.sdf.orgto Linux@lemmy.ml•Mozilla Firefox 119 Is Now Available for Download, Here's What's NewEnglish1·2 years agoTree Style Tabs forever, baby! Simple vertical tab bars can’t even hope to compete.
Hadn’t heard about Zellij before now, it looks really cool!
tmux (and GNU screen, its older predecessor) is a terminal multiplexer, which is a fancy phrase used to describe turning one terminal window into multiple terminal windows. It basically turns a single terminal window into a text-based tiling window manager that lets you run different shells concurrently in a single terminal, easily copy text between them, and have other quality of life improvements over using a single raw terminal.
Imagine you’re SSH’d into a remote machine. Unless you SSH again from a different terminal at the same time, you’re basically limited to a single terminal, and whatever you’re doing is interrupted if your connection drops. tmux runs on the remote machine, which means that if your connection is interrupted, tmux will continue running exactly as you left it, and you’ll be able to reattach to it using
tmux attach
.Or, imagine your video drivers break and you’re forced to troubleshoot in a raw TTY. tmux will let you have a manpage and a shell open at the same time, or three different directories opened side by side. That’s a slightly more convoluted use case, but the point is that terminal multiplexers make it far more convenient to use the terminal in basically any situation that’s not just running a single short command and leaving.
true, but you’ll be able to tell people you use nix
Might be a bit too heavyweight for your tablet, but both GNOME and KDE have tablet/touch modes which activate automatically if they detect touch input but no mouse. If auto detect doesn’t work you can turn it on manually in Settings -> Workspace Behaviour -> General Behaviour -> Touch Mode in KDE. Not sure about GNOME.
iusearchbtw@lemmy.sdf.orgto Linux@lemmy.ml•CMD Generator - Web UI to generate Linux/Unix commandsEnglish3·2 years agoAs will
bash
if you use ble.sh!
Must-have addons for tab hoarders like myself.
iusearchbtw@lemmy.sdf.orgto Linux@lemmy.ml•Why don't more distributions have something like the AUR when it's the main reason why so many people use Arch Linux?211·2 years agoThe AUR still has a lot of niche software that hasn’t been Flatpakked, but yeah. Flatpaks are way more convenient, especially for large software where AUR compilation can take a long time.
Seconding vim as the universal Unix/Linux editor. It takes a while to become a real vim pro, but learning basic usage is very helpful. Escape to switch to normal mode (where letters trigger functions instead of just typing), i to switch to input mode, : in normal mode to enter commands, :wq to save and quit, :q! to exit without saving - that alone should be enough to cover a lot of basic use cases. If you ever want to learn more, there are plenty of tutorials online.