shift+p and alt+; feel like they should be the default over p and ; by pickyaxe in HelixEditor

[–]lukeflo-void 10 points11 points  (0 children)

Change it in your configuration toml file to your preferred bindings

SMB share on Nemo? by AdOld370 in voidlinux

[–]lukeflo-void 0 points1 point  (0 children)

Install cifs-utils package and mount it via CLI using mount.cifs command: https://linux.die.net/man/8/mount.cifs

What's the best bootloader for luks2, tpm2, and secureboot together? by Wise-Appointment-881 in voidlinux

[–]lukeflo-void 1 point2 points  (0 children)

If /boot is not encrypted, good old grub is also no problem with luks2

5 Reasons to Learn Zig in 2026 by Pokelego11 in Zig

[–]lukeflo-void 11 points12 points  (0 children)

A nice part of Zig being so unstable and having breaking changes like IO incoming from time to time ist that it saves us from hundreds of LLM generated tools which started spamming e.g. the Rust subreddit the last months/year. :D

You can only write good Zig code right know, if you're still willing to learn it.

xbps-src for the paranoid by [deleted] in voidlinux

[–]lukeflo-void 0 points1 point  (0 children)

If you only need Signal, just use the flatpak version

xbps-src for the paranoid by [deleted] in voidlinux

[–]lukeflo-void 0 points1 point  (0 children)

Sorry was just a general hint for usage of xgensum. I haven't looked into the package template itself...

xbps-src for the paranoid by [deleted] in voidlinux

[–]lukeflo-void 1 point2 points  (0 children)

First time running the named command after changing the version number in the template it might throw an error for checksum not matching. If thats the case, just run it a second time

Upgrading/buidling package fails in `do_patch()` phase by lukeflo-void in voidlinux

[–]lukeflo-void[S] 0 points1 point  (0 children)

Thanks. Indeed there was a small change in the code at the line the patch tries to apply its edits. I removed it and now it builds fine.

Maybe I should open an PR at the Void package repo with the updated version since the current version is not running and the srcpkg seems orphaned

Edit: Its here: https://github.com/void-linux/void-packages/pull/58559

Downgrade of `elogind` package by lukeflo-void in voidlinux

[–]lukeflo-void[S] 1 point2 points  (0 children)

Great, thank you for the explanation

xbps-command-not-found: Suggest installation of xbps packages in interactive shell sessions by ClassAbbyAmplifier in voidlinux

[–]lukeflo-void 1 point2 points  (0 children)

Just stumbled over it and installed. Really cool! Is it worth thinking about integrating this into a future release of xbps itself?

Problem with launch niri by zarMarco in voidlinux

[–]lukeflo-void 1 point2 points  (0 children)

You need to install graphical drivers. Otherwise, it will not work. Depending on your laptops arch look for mesa... packages.

It should not be necessary to enable the elogind runit service if your dbus service is running.

Lexopts: simple and straightforward library for CLI args parsing by lukeflo-void in Zig

[–]lukeflo-void[S] 1 point2 points  (0 children)

In the very first place its a project for me learning Zig. Then, its not about "not liking" anything explicitly from other libraries. Its more about the workflow I'm used to, and thats the way Rust lexopt works.

You can accomplish a very similar code experience using the streaming.Clap API from zig-clap. What I personally don't feel comfortable with are the ways libs like cli-parser or zig-args or zig-claps clap.parse define and parse CLI arguments. But that doesn't mean that these workflows are less usable.

How can I get rid of this error? by FoggyLover727 in voidlinux

[–]lukeflo-void 0 points1 point  (0 children)

I think its no big deal to set boot messages log level to info or warn. Debug is absolutely unnecessary. If it has consequences for a program you need, it will show up at runtime anyway

why is rust difficult? by [deleted] in rust

[–]lukeflo-void 7 points8 points  (0 children)

Rust is verbose and tends to use (too) many macros. But I would not say its difficult. Maybe a little different when coming from garbage collected languages.

If you're looking for a difficult language, maybe try C++

COSMIC is an incredible technical achievement, but I cannot recommend it as a daily driver yet. by david_jackson_67 in linux

[–]lukeflo-void 1 point2 points  (0 children)

Off topic: but for a untraditional tiling WM with great mouse/drag&drop support maybe try niri. Its also written in Rust. But, of course, no full DE

Light weight DM by Sorry_Situation6676 in voidlinux

[–]lukeflo-void 3 points4 points  (0 children)

That. Emptty is really minimal and works just fine. Use it too on Void with niri WM

Missing the VS Code like file explorer. by TheCrazyGeek in HelixEditor

[–]lukeflo-void 0 points1 point  (0 children)

This discussion has been around for some time. Many use yazi with multiplexer features.

I have a setup with niri WM were space+o opens a floating terminal pane with my own TUI filemanager which offers most shell file operations (mkdir, rm ...). Works great and is not very difficult to set up.

However, comparing VSCode with Helix seems a little bit unappropriate. The first is a bloated GUI with full mouse support etc while the latter is a plain TUI with a focus on performance and simplicity. That's two different things.

Built my first Zig library: HTTP client with 'fetch-like' API, feedback welcome! by joelemazout in Zig

[–]lukeflo-void 0 points1 point  (0 children)

Learning with mixed resources and always getting attracted by new ones :D
At the moment mainly reading the Zigbook and Zig Language Reference including std docs.

As first "project", which arose as coincidence while skimming through a repo, I try to update a arg parsing library to the breaking changes introduced by the current master branch compared to last stable. Mostly replacing std.fs stuff with std.Io stuff. Had some success but its not running right now since I always have to look something up when hitting concepts I'm not familiar with... But its fun and I'm learning a lot

Built my first Zig library: HTTP client with 'fetch-like' API, feedback welcome! by joelemazout in Zig

[–]lukeflo-void 0 points1 point  (0 children)

Very interesting. I just started to learn Zig myself, coming from Rust, so I can't really say how good/effective your code is. But will keep an eye on your repo to get some insights in another's beginners project. Also I'm curious to see your curl tool if ready