Remus86

u/Remus86@lemmy.zip
0 posts · 22 comments

Recent posts

No posts.

Recent comments

I don't know if LVM acts the same as btrfs, but in order for my root snapshots to work, I couldn't have the swapfile directly in /. It has to be made in /swap/swapfile to work. Just something to be aware of.

on roll for perception · c/linuxmemes · 8 pts · 42d

Only tangentially related, but this post made me think about how everyone historically sees the day when Windows stopped being built on top of DOS as an advancement. If that ever happened on Linux, where there was no longer a fully functional base Linux system without graphical system libraries, my entire reality would shatter beneath my feet.

on Thoughts LMDE? · c/linux · 1 pts · 42d

True, I forgot about that. I should amend my statement to say I wish Hyprland or sway would implement it. I like Labwc as well, but it took me half a day to write UL, UR, LL, and LR quarter tile window shortcuts.

on Thoughts LMDE? · c/linux · 3 pts · 42d

Yeah, if you have spotty internet service or are using a minimal data plan, that can be an important deciding factor. You can leave an Arch system without updating too, as long as you don't install a new package.

on Thoughts LMDE? · c/linux · 2 pts · 42d

I tried TWM for a hot minute a couple years ago, thinking I'd be so cool for having the absolute minimal GUI possible. But the config syntax was impenetrable for me. I do still miss the left click root menu concept. I wish wl-roots compositors would implement that.

on Thoughts LMDE? · c/linux · 5 pts · 42d

Don't get me wrong, I used Mint for a year, it's what helped me quit macOS for good. It's a great distro, where you don't have to delve into advanced Linux topics just to get things working, which is what kept me as just a visitor to Linux for years prior. But once I did get the hang of Linux, I was drawn to Arch's philosophy of installing only what you want (* systemd being the glaring exception). Then I got converted to tiling WMs. So now there's very little about LMDE that appeals to me. I'd still recommend it to anyone though.

on Dude-tier list · c/linuxmemes · 1 pts · 175d

I look at it more like Artix exists to solve the one "problem" with Arch. As much as Arch is generally about user choice, the one thing it decided to be opinionated about was the mandatory use of systemd. Artix tries to follow Arch as closely as possible while providing the alternate init systems. I think that's pretty cool, even if their hatred of systemd is childish.

In X11 you can just use 'exec app-name' and it will replace the terminal window with the app. In Wayland, I got it to work with this:

setsid app-name & disown
sleep 1
exit

Without the 'sleep 1', it exits the terminal too quickly for the app to launch, at least when I tried it.

*Edit: In order for it to work as a script, you still need to type exec first. Or, in my case, I aliased "open-app" to "exec open-app".

I know in zsh, fish, and nushell, you can press a key combo to jump into a text editor of your choice. You write your command there, with all the power and shortcuts in emacs, vim, nano (whatever you like to use). Then you save and exit, and it appears in your command line, ready to execute.