Most of it was just nice little touches that didn’t change my day much, but the explicit sync in Wayland by also adding the Nvidia 555 driver has really been nice
Most of it was just nice little touches that didn’t change my day much, but the explicit sync in Wayland by also adding the Nvidia 555 driver has really been nice
Just installed in EndeavourOS this morning
Lol yeah that too
Honestly my biggest issue is with not moderating out the dozens of ridiculous entries that are either unrelated or just tinkercad screenshots of unprintable objects that were slapped together without even knowing how to use the align tool. Bonus for the ones that are not even screenshots but photos of someone’s monitor showing their ridiculous tinkercad thing. Like, what are they thinking? Why even submit?
I like contests as curated collections for me to browse through, and the scrolling through all that crap kinda annoys me. Maybe they’re curating them out now, it’s been a while since I looked through them. I know it’s a minor pet peeve thing lol
Just had to look it up, never heard of it! Thanks for the suggestion.
I live in high humidity, so that’s a big part of my setup. I print from a custom dryer with 4 spools in it, which feed to the printer through PTFE bowden tubes. I have a wifi switch for the dryer that just turns on once in a while to keep the ones sitting there from getting wet by keeping the inside of the dryer, well, dry. I store all my filament in containers with a 3d printed silica containers that go into the spool. I use the “rechargeable” silica beads that change color when saturated. Once in a while, when I see that the beads are turning blue in the containers from opening and closing, I will do a drying session where I dry all the silica containers and the spools for a good while and put them all back into the containers. Can be a bit overkill, but it fully eliminates that factor for me!
Sorry to be that lame, but this is me learning to go ! Instead of r/
Never thought of this, and if someone told me , I would doubt it works, but he did it. That’s pretty neat!
Yeah, I have one piece of software where I need Windows with a GPU (Fusion 360, got it running on wine once but an update broke it), and my wife needs my PC for Adobe stuff sometimes. I might buy a cheapo used older GPU, I don’t need much since it’s not for gaming. That said, the video showed something that might fix where I got stuck last time trying to pass the integrated GPU, so I’m trying that again. I have a Ryzen 9 with 24 cores, so plenty of juice to go around If that if I can pass the igpu through. Then I could try looking glass and be all set. Thanks for sharing, gave me some hope to try again haha
Ha, I was about to edit to say I watched the video. It’s a pretty smooth transition into the client machine!
Thanks for sharing the details! I’m gonna check out the video. So if I understand correctly, when you start your VM, it completely takes over video, and you’re not seeing the host desktop at all, but then when you shut down the VM, it returns to your host desktop? So the resulting experience is like dual booting, but a lot faster? I Heard about looking glass, but hadn’t delved into it since I couldn’t even get the igpu to passthrough in the first place (testing with a cable going to another input in my monitor, which AFAIK, would be the part that looking glass solves)
Oh, this looks nice. I like the bit about maintaining different versions, which is something kind of annoying about maintaining different setups for my laptop and desktop
I just learned about stow, which as far as I understand, is a package that kinda manages the whole symlinking bit for you plus a few things? Honestly, I am not sure how it would differ exactly from what you’re doing, but you should check out a short video on it: https://www.youtube.com/watch?v=y6XCebnB9gs&t=3
Ha, very nice!
The black Sabbath for Internet connection is hilarious. Did you get that from the Bitcoin mining trigger bit on Silicon Valley?
This nice little one liner bash script, assigned to a shortcut Meta +Shift + O. It opens the flameshot GUI, let’s you select an area of text in your screen and click Ok. It OCRs the screenshot and puts it into the clipboard. It checks for whether you’re using Wayland or X11 to use the appropriate clipboard tool. Beyond the more typical text in an image scenario, it’s a convenient way to copy non-selectable text in error popups. Not my original idea, copied the concept from a suggestion in a GitHub comment thread and adapted it.
exec &> /dev/null [ “$XDG_SESSION_TYPE” = “wayland” ] && (flameshot gui --raw | tesseract stdin stdout | wl-copy) || (flameshot gui --raw | tesseract stdin stdout | xclip -in -selection clipboard)
Are you using stow for that?
I just got a Dell precision through work, and I am glad I accidentally stumbled on that in the bios menu, I would not have guessed either
Oh my god, I wish! I have tried unsuccessfully before, but I was trying to just pass my onboard AMD igpu to the VM and keep an NVIDIA on Linux.
When you say single passthrough, you mean splitting the one GPU to host and client?
I have tried through the arch wiki and a couple of YouTube tutorials with no luck. If you found any tutorials/resources that really, helped, please share!
Also, I really wish I had the foresight to have bought AMD instead of NVIDIA a few years ago, but it was before I was on Linux as my main driver and didn’t know any better
I was looking for something similar for a while, like something for simple relational data with some GUI for data entry, aka “I don’t wanna write a little web app just for this”. I had used AirTable at work before at work so that’s what came to mind and my searching was basically for “open source or selfhosted alternative to AirTable”.
Came across some decent candidates, can’t remember all the names, but the one I tried, Grist, was pretty straightforward and did the job: easy relational data setup, GUI for all basic data types including file uploads, easy to create input forms, and widgets that talk to the API and you can customize with JavaScript. Setup was easy with docker
EDIT: other names that came up when looking were NocoDB and BaseRow ( I don’t remember why I didn’t try them for my specific needs)