[-] wwwgem@lemmy.ml 5 points 5 days ago

Quite recently I moved to my first trackball (Elecom Deft Pro) and that was a life changer. I've shared my experience here.

[-] wwwgem@lemmy.ml 13 points 3 weeks ago

I've explained my choice for zsh here

Nicely configured it's so convenient that I spend most of my time in the terminal and don't even use a file explorer anymore. It can also be expanded with some plugins for specific use-cases.

[-] wwwgem@lemmy.ml 13 points 1 month ago

Umatrix was awesome but is unfortunately not maintained anymore since July 21, 2021. Ublock origin is a perfect replacement though and can be deeply configured behind its simpler appearance. Coupled with the LibRedirect add-on in the Librewolf browser and I can navigate ad and tracking free.

[-] wwwgem@lemmy.ml 26 points 2 months ago

I use the open source KISS launcher for years now. Your data never leaves your device, and you can expect to save battery life and speed up your device compared to complex and bloated launchers. KISS is just 250 KB and never connects to the Internet.

The best thing is that - behind a simplistic configuration menu - you can configure it from an ultra minimalist black screen with one text box to call when you need to launch an app, search for a contact, search on internet... to a full app drawer organized however you want (alphabetical order, your own defined categories...). It's just insane and unfortunately so much overlooked.

[-] wwwgem@lemmy.ml 95 points 4 months ago* (last edited 4 months ago)

"Traditionally, the /opt directory is used for installing/storing the files of third-party applications that are not available from the distribution’s repository.

The normal practice is to keep the software code in opt and then link the binary file in the /bin directory so that all the users can run it."

https://linuxhandbook.com/linux-directory-structure/

[-] wwwgem@lemmy.ml 19 points 5 months ago

The modularity, repairability, and price for specs are what attracts me compared to the other companies mentioned in this post.

149
submitted 5 months ago* (last edited 5 months ago) by wwwgem@lemmy.ml to c/linux@lemmy.ml

Hello fellows,

I'm currently looking in 13-14" laptops with no immediate needs for one but just because it's exciting. I love my Dell XPS but I feel I should support companies with which I share more common views. I could make the effort to go a with a less attractive look (especially for bezels) but I don't want to go wrong with hardware so what are your thoughts on Framework, Starlab, Purism, and System76? I'll be running Arch and I tend to have a preference for Framework for now.

Do you have feedback (positive and negative) to share on any of these companies?

Thanks for the knowledge you'll bring me. That'll be extremely useful when time comes to go with a new machine.

Update 1: Still wonderful to be part of such a great community. Thanks for all the great feedback (looking for more :) ).
So far everyone is standing behind Framework. Anyone with a less positive experience or who would like to speak for the other companies?

Update 2: Thank you fellows for the time you've spent to share your honest feedback! I didn't want to influence your inputs but you all confirmed the Framework picture I had in mind. It's a piece of mind to read real world experience so thanks again. I was surprised to not see the system76 community speaks louder. Anyway, when time comes I will (virtually) push Framework shop's door.

59
submitted 5 months ago by wwwgem@lemmy.ml to c/linux@lemmy.ml

A story telling to save me from a therapist consultation.

No space square world. I realize that that this could be my theme philosophy. This is my general approach:

  • windows manager: tiling (bspwm)with no spaces, squared windows, no decorations, no visual effects
  • theme: transparency and grey background buttons/white text

Over two decades I went from a fancy looking machine to its complete opposite where minimalism is king. How did I make such a big jump?
To make it brief, recreating this comfort look that invaded my real environment felt reassuring at first in my virtual life. But as time went by I noticed that smooth rounded stuff that transiently showed up on my screen created:

  • more and more distraction and negatively impacted my productivity
  • some frustration when something didn't run as expected because I felt that everything should be as smooth as the appearance of my screen

I would definitely say that I feel way better now and I'm more efficient but I also admit that I've reached an extreme where:

  • I don't appreciate screens over 14" anymore because I feel like it's taxing on my eyes movement and again a waste of space
  • I don't like wasting a pixel of space if not justified. This is also maybe influenced by preference for small screens
  • I need extreme simplicity (which brings efficiency) to all aspects of my workflow. So I use a 36-key split keyboard, a trackball, vim-like keybindings everywhere possible, use terminal as much as I can, use fzf for all my file searches...

Hope you will never end up like me but nice to have friends in this group if it's too late for you ^^

28
submitted 5 months ago* (last edited 5 months ago) by wwwgem@lemmy.ml to c/linux@lemmy.ml

Hello,

The NixOS community has been great in helping me with my first steps in this distro. So I'll ask again few neovim-related issues I couldn't figure out after 3 days of search.

First, let me tell you that I'm trying to import a working neovim setup from another distro. Then let's see how I've configured neovim. I have this in my home.nix file:

programs.neovim = {
  enable = true;
  withPython3 = true;
  extraPython3Packages = (ps: with ps; [
    pynvim
    unidecode
    black
    isort
  ]);
  plugins = with pkgs.vimPlugins; [
    { plugin = *plugin_name*;
    type = "lua";
    config = builtins.readFile *config_file_path*;
    }
    ...
    ];
};

(my init.lua file is in the $HOME/.config/nvim folder)

With that most of my plugins work. Most because few are troublesome. Let's focus on three of them:

  1. I have pkgs.vimPlugins.nvim-comment installed but neovim reports that the command CommentToggle is not an editor command

  2. I have pkgs.vimPlugins.nvim-treesitter installed but the command TSInstall markdown returns "could not create parser dir '/nix/store/.../nvim-treesitter/parser ': Vim:E739: read-only file system '"

  3. I have pkgs.vimPlugins.mason-nvim and pkgs.vimPlugins.mason-lspconfig-nvim installed but runngin checkhealth mason returns few warnings:

  • mason.nvim is not the latest version (I use the unstable channel)
  • pip: not available spawn: python3 failed with exit code 1 and signal 0. /run/current-system/sw/bin/python3: No module named pip (note that python3_host_prog and python3_host_prog pip are marked "OK")

Thanks again for your assistance.

22
submitted 5 months ago* (last edited 5 months ago) by wwwgem@lemmy.ml to c/linux@lemmy.ml

Hello,

I'm experiencing with NixOS and would like to know what would be the nicest way to add a specific line to a system file.

As an example, how would you configure NixOS so the line
auth sufficient pam_fprintd.so
is added to the /etc/pam.d/doas file? As a bonus, it would be nice to know how to change an option (and not add an entire line) to a system file for which there is no NixOS default extraConfig/extraRules support for.

This would allow me to add this line or not depending on the machine NixOS will be installed on.

Thanks in advance for your suggestions.

3
submitted 5 months ago by wwwgem@lemmy.ml to c/gohugo@lemmy.ml

Sharing what I've learned about optimizing your Hugo blog using smart shortcodes for images

https://www-gem.codeberg.page/hugo_images

[-] wwwgem@lemmy.ml 22 points 5 months ago* (last edited 5 months ago)

Always nice to read so great posts. Welcome to a brand new world of possibilities. I promise your journey will be long but full of self accomplishments, learnings, satisfaction. You will probably run into one or two times when you'll have to search for a solution but in these situations the Linux community will always be there for you and you'll feel so proud to have learn something along the way.

You realize how much Linux is different to other OS only when you live with it. There's a real philosophy, it's not just some branding wording. If you feel adventurous enough you'll certainly see your mindset and way of thinking evolving as time goes. You have so much possibilities to discover, I'm jealous of this sentiment of new user you'll experience. I've personaly used to tweak Windows back in the days and its limitations (amongst other things) is one of the main reasons why I switched to Linux. Twenty years later I'm wondering how I didn't know earlier that another world existed.

Beyond the fact that Linux has improved my workflow drastically compared to my Windows/MacOS colleagues, it also helped me grow intellectually. The best part is that it never ends because there's always a new tool, app, distro to experiment, play with, and learn from.

Working with a system and not adapting to it or fighting against it is a huge difference. Linux has so many options that you can litterally build the system that fits your specific needs and liking to perfection (and even better than you can think now). It's just a matter of few efforts. We're not used to make efforts nowadays and prefer opting for the laziness of being the slaves of a system/brand but I can guarantee you will be rewarded for these efforts beyond your expectations.

Enjoy your new life!

[-] wwwgem@lemmy.ml 14 points 5 months ago

Drivers is a vocabulary you should almost forgot in Linux ;) Contrary to other OS, Linux will rarely require you to install a driver.

To answer your question, doing a simple online "mint wireless 8275" returned a forum with your exact issue. The reported solution is to "try powering it off, remove the power cord and hold the power button for 30 seconds. Reconnect cord and power up". As weird as it sounds this may work. It worked for me 10 years ago with a keyboard. It's easy and quick to try it. Let us know if that helps or not. Too bad you didn't like Arch because your laptop was fully supported.

[-] wwwgem@lemmy.ml 17 points 6 months ago

Personally I use reflector like so:

reflector --verbose --country "United States" -l 200 -p http --sort rate --save /etc/pacman.d/mirrorlist

36
submitted 6 months ago* (last edited 6 months ago) by wwwgem@lemmy.ml to c/linux@lemmy.ml

I've been curious about NixOS for quite some time. Reading about it I couldn't see how the config sharing capabilities, setup, or rollabck would be better than Arch and sharing the list of installed packages, using downgrade or chroot.

So I decided to run NixOS in a VM and I'm still confused. An advantage I can see for NixOS is its better use of cores and parallel processing for packages install.

It's clear that I'm missing something so please help me understand what it is.

Edit: Thank you to everyone in this great community! It's always so nice to have a constructive and sane discussion.
After reading so many comments, they all confirm what I've read before and I may realize that my real problem is already having a stable system and no need for the great NixOS options that are very neat but would not benefit my specific and simplistic needs. That being said I can't refrain myself from being curious and will continue testing NixOS.

The need for only 2 config files is the top of the iceberg but hiding more complex configuration to rely on. Not that I really have too much spare time but I do enjoy learning and tweaking NixOS. With its current development state, things are changing a lot so it can keep me busy for months. That's probably what I was mostly looking for: another toy to play with.

Along my journey I will learn a lot about NixOS and may find a feature that will motivate my switch to it. Thanks again for all your precious feedback!

I'll also take this opportunity to share the best help I've found so far to start with NixOS: https://github.com/MatthiasBenaets/nixos-config And his 3 hours (!) video: https://m.youtube.com/watch?v=AGVXJ-TIv3Y

[-] wwwgem@lemmy.ml 21 points 6 months ago* (last edited 6 months ago)

This is a vast question. Security is an extremely deep topic.
Did you take a look at the wiki? It may be a good starting point.

[-] wwwgem@lemmy.ml 15 points 6 months ago

Enjoy this little guy and Linux! You won't regret your choice.
As I mentioned in the other thread, I'd advise to keep your firmware up to date with fwupd. Litterally one command line and your system will automatically update all firmware for you (including the bios). This is too often overlooked while very important and this tool makes the process so simple (no search, no manual download, no complex commands).

[-] wwwgem@lemmy.ml 22 points 6 months ago

Terminal is faster when you're used to it and sometimes offer more customization options to some apps that has both a GUI and TUI/CLI version.

I use the terminal (st with zsh and tmux) for:

  • file management (advcpmv, fd, trash-cli, fzf ...)
  • emails (neomutt)
  • text editing/coding (neovim)
  • project management (taskjuggler)
  • image viewing/organization (ucolla,ge)
  • online video browsing (ytfzf)
  • calendar (khal)
  • ssh
  • vpn
  • news aggregator (newsboat)
  • web, bookmarks manager (buku)
  • passwords manager (pass)
  • dotfiles manager (stow)
  • not in the terminal but I also have a lot of scripts used in rofi to control my audio input/outputs, launch a web search, access my bookmarks, autocomplete username and password fields

I'm sure I'm missing some obvious tools I use daily. It's hard remember everything when it becomes so natural.

I have shared my experience with some of these tools here.

view more: next ›

wwwgem

joined 1 year ago