ZSH still needs the completion data files to be installed. It won’t just magically know the completions.
I take my shitposts very seriously.
- 19 Posts
- 1.8K Comments
rtxn@lemmy.worldto
Games@lemmy.world•[id Software, the] Studio Behind Doom [and Quake, Wolfenstein] Just UnionizedEnglish
30·8 hours agoChemistry. Gets really dull without ions.
rtxn@lemmy.worldto
Games@lemmy.world•[id Software, the] Studio Behind Doom [and Quake, Wolfenstein] Just UnionizedEnglish
1·8 hours agodeleted by creator
tl;dr: yes, credentials are cached locally. https://github.com/dani-garcia/vaultwarden/discussions/4676
The major downside to the single file storage used by Keepass is that it’s easy to accidentally create a conflict between files on different devices if they’re not synced immediately. Conflicting files have to be merged manually or data might be lost. I’ve run into this several times with Keepass + Nextcloud. In comparison, a central master database with local cache can resolve conflicts between individual records.
deleted by creator
rtxn@lemmy.worldto
Games@lemmy.world•The Game Awards begins 11 hours from now. What are you looking forward to?English
2·1 day agoMegaman hasn’t even done anything wrong (yet)… but we HATES IT!
rtxn@lemmy.worldto
Games@lemmy.world•The Game Awards begins 11 hours from now. What are you looking forward to?English
2·2 days ago!clem
rtxn@lemmy.worldto
Games@lemmy.world•The Game Awards begins 11 hours from now. What are you looking forward to?English
10·2 days agoHalf-Life Alyx 2
rtxn@lemmy.worldMto
linuxmemes@lemmy.world•Linux is the reason Windows apps are bloated these days
61·4 days agolosing integration because “containerized”
Bollocks. I’ve seen that many times with Flatpak (can’t speak for Snap), and every single time it was either because the packager failed to set up permissions or because the user messed with permissions that the application needed. Break off the tip of a screwdriver and it will no longer function as a screwdriver.
And I know you’re talking out of your ass because AppImage isn’t even sandboxed.
taking GBs of space
That part is true and accurate, and for a very good reason: dependency pinning. System packages can break if they don’t have the correct versions of shared libraries. If a package requires a very old version of a library, and doesn’t link it statically or supply it with the package, it can misbehave, have missing features, or refuse to even start. Flatpak (and probably Snap too, can’t speak for it) solves that by letting the packager specify (pin) the exact version of a dependency. If five separate packages require five different versions of the GNOME application framework, then they will download five separate packages of the correct version. AppImage solves it by being monolithic: everything is packaged together into a single executable.
Tailscale should work. It uses Wireguard and does some UDP fuckery to get around the firewall and NAT (including CGNAT). I can stream Jellyfin through it at 1080p native with no significant buffering, it’ll work for music.
rtxn@lemmy.worldto
Linux Gaming@lemmy.world•How do I run two programs in the same Lutris instance?English
19·7 days ago“Run EXE inside Wine prefix”

It might not work, though. I’ve tried to use a similar tool with Snowrunner, it found the process, but didn’t actually work.
rtxn@lemmy.worldto
Linux Gaming@lemmy.world•No Man's Sky Multiplayer works on Steam Deck, but not Arch LinuxEnglish
3·7 days agoOne of these might help: https://steamcommunity.com/app/275850/discussions/0/601902145259725017/
Although I wouldn’t be surprised if it was caused by NMS’s own network backend. When the Corvette update was launched, multiplayer was fine on my work computer, but did not work on my home PC. It’s a constant dumpster fire.
rtxn@lemmy.worldto
Linux Gaming@lemmy.world•Lutris doesn't proton variations such as Proton-EM?English
3·9 days agoIf you have Steam installed, try putting them in
~/.local/share/Steam/compatilitytools.d.
3-day timeout. Stop being a dick.
Uh… kinda? Powershell has many POSIX aliases to cmdlets (equivalent to shell built-ins) of allegedly the same functionality.
rmdirandrmare both aliases ofRemove-Item,lsisGet-ChildItem,cdisSet-Location,catisGet-Content, and so on.Of particular note is
curl. Windows supplies the real CURL executable (System32/curl.exe), but in a Powershell 5 session, which is still the default on Windows 11 25H2, thecurlalias shadows it.curlis an alias of theInvoke-WebRequestcmdlet, which is functionally a headless front-end for Internet Explorer unless the-UseBasicParsingswitch is specified. But since IE is dead, if-UseBasicParsingis not specified, the cmdlet will always throw an error. Fucking genius, Microsoft.
rtxn@lemmy.worldto
Linux Gaming@lemmy.world•Linus vs Linus Happened: Building the PERFECT Linux PC with Linus Torvalds [54:20]English
101·12 days agoHe can’t, he had to re-run a benchmark.
Never let perfection be the enemy of getting it to work.
rtxn@lemmy.worldto
Selfhosted@lemmy.world•How to propperly Ansible and selfhost without burning out?English
9·14 days agoIs this what normies feel like when Linux users tell them to just use Linux? I have some apologies to make.












The problem is that syncing between devices is not implemented in KeePass itself but through an external tool (Nextcloud, Syncthing, or whatever else). The sync client will only see the ciphertext and won’t be able to tell which records have been changed, only that two different binary files have a common ancestor and are in conflict.
The most obvious solution is to lock and close the database when it’s not in use (which is a good practice from a security perspective too), and to sync immediately when it is changed.