• 0 Posts
  • 421 Comments
Joined 1 year ago
cake
Cake day: February 15th, 2025

help-circle







  • 5 seconds? How?

    My grub is set to 2sec.

    From pressing the power on button to an open start menu (I measure like this because the DE is still unusable for a good 5s after it becomes visible) it takes me about 36 seconds.

    I recently tried hibernation thinking it would speed things up, but it takes about 2 minutes… huge RAM bad I guess.

    (And yes, windows on the same hardware is way faster at about 17s, because it does some magic idk about)


  • Must be difficult if you judge an OS based on whether other users of it are nice online… how do you get anything done?

    Sarcasm aside, I used to mod ad artix community back when I was using it and it was 99% support requests that have already been answered somewhere else… so like most other linux communities. And I’ve seen my share of toxic people in most of them. I mean, maybe it changed for the worst from when I last experienced it, but then, just don’t participate in the community?

    The OS itself is alright. Pretty much same as arch, but you hage to tinker more… It gets somewhat annoying writing your own init/unit files for each app that needs systemd, thats why I switched back to plain old arch. I can see the tradeoff being worth it if you dislike the systemd direction/philosophy enough.

    And I hate that artix puts it’s flair on KDE, just give me the vanilla experience, I don’t want to manually remove your ugly theme.



  • The problem is that your desktop environment’s shortcut handler intercepts Alt+V before KeePassXC ever sees it, so the internal keybinding never fires. And when pgrep finds the process running, your command simply does nothing.

    The fix is to use KeePassXC’s --auto-type CLI flag, which sends the auto-type signal to a running instance:

    Command for your custom shortcut (Alt+V):

    bash -c 'pgrep -x keepassxc > /dev/null && keepassxc --auto-type || keepassxc'
    

    Not sure how keepass behaves though. Maybe you don’t need the condition at all and can just run keepassxc --auto-type from the shortcut and if there is no running instance it will start it.




  • I’ve been running it for 2 years.

    The swarm support integration is first class, but there is not much to do in the gui, you can add nodes and see basic info about them and thats it basically.

    Most of the stuff happens in the compose files where you can define how many copies of a container you run and what nodes you want to restrict them to. etc.

    I’m not sure about the moving features tbh. It should move them automatically when a node is down. In my setup I don’t use that at all, all my containers are pinned to specific nodes by feature flags (one node has lots of hdd storage, another has more ram, another has a gpu).

    You can see the container logs, but you have to select “swarm” in a dropdown when the container is not on your master node.

    And also when deploying a new app you have to select “Compose” and then in a further dropdown “Swarm”.