QuazarOmega

joined 2 years ago
[–] QuazarOmega@lemy.lol 13 points 1 week ago

Nix intensifies

[–] QuazarOmega@lemy.lol 2 points 1 week ago* (last edited 1 week ago) (1 children)

I think you can with Pins, no right-click menu, but you can find them easily from within the app

[–] QuazarOmega@lemy.lol 9 points 2 weeks ago

You're not alone on that, I second this, huge respect to OP!

[–] QuazarOmega@lemy.lol 4 points 2 weeks ago* (last edited 2 weeks ago) (1 children)

Very much so, not quite ready for prime time maybe, but you can play with it, StarFive is quite well-known for their chips in this space for example

[–] QuazarOmega@lemy.lol 43 points 2 weeks ago (5 children)

I'm disappointed that I misunderstood the topic of that community

[–] QuazarOmega@lemy.lol 3 points 2 weeks ago

A worthy death

[–] QuazarOmega@lemy.lol 7 points 2 weeks ago (2 children)

If the optimistdaily says no Imma be real sad

[–] QuazarOmega@lemy.lol 3 points 2 weeks ago

Oh my lord, how many tabs have been opened??

And where can we see the rest of her drawings? Any fedi-platform?

[–] QuazarOmega@lemy.lol 1 points 2 weeks ago

Ah so it is! And yeah, Signal not having it is such a pain

[–] QuazarOmega@lemy.lol 2 points 2 weeks ago (2 children)

embedded galleries instead of the 2 available portals (but Google will soon forbid that)

Is it not using the portal? I thought it was since I'm able to choose every picture without granting media access to WhatsApp

[–] QuazarOmega@lemy.lol 7 points 2 weeks ago (1 children)

Waifu is temporary, only Bennett is eternal

[–] QuazarOmega@lemy.lol 4 points 3 weeks ago (1 children)

Aaaa delete this

 

My solution:

let

  nixFilesInDirectory = directory:
    (
      map (file: "${directory}/${file}")
      (
        builtins.filter
          (
            nodeName:
              (builtins.isList (builtins.match ".+\.nix$" nodeName)) &&
              # checking that it is NOT a directory by seeing
              # if the node name forcefully used as a directory is an invalid path
              (!builtins.pathExists "${directory}/${nodeName}/.")
          )
          (builtins.attrNames (builtins.readDir directory))
      )
    );

  nixFilesInDirectories = directoryList:
    (
      builtins.concatMap
        (directory: nixFilesInDirectory directory)
        (directoryList)
    );
  # ...
in {
  imports = nixFilesInDirectories ([
      "${./programs}"
      "${./programs/terminal-niceties}"
  ]);
  # ...
}

snippet from the full source code: quazar-omega/home-manager-config (L5-L26)

credits:


I'm trying out Nix Home Manager and learning its features little by little.
I've been trying to split my app configurations into their own files now and saw that many do the following:

  1. Make a directory containing all the app specific configurations:
programs/
└── helix.nix
  1. Make a catch-all file default.nix that selectively imports the files inside:
programs/
├── default.nix
└── helix.nix

Content:

{
  imports = [
    ./helix.nix
  ];
}
  1. Import the directory (picking up the default.nix) within the home-manager configuration:
{
  # some stuff...
  imports = [
    ./programs
  ];
 # some other stuff...
}

I'd like to avoid having to write each and every file I'll create into the imports of default.nix, that kinda defeats the point of separating it if I'll have to specify everything anyway, so is there a way to do so? I haven't found different ways to do this in various Nix discussions.


Example I'm looking at: https://github.com/fufexan/dotfiles/blob/main/home/terminal/default.nix

My own repository: https://codeberg.org/quazar-omega/home-manager-config

343
submitted 9 months ago* (last edited 9 months ago) by QuazarOmega@lemy.lol to c/linuxmemes@lemmy.world
 

We all know who's the real steward of free software and federation

*smiles in anticipation*


legit had to draw the vector logo of Gogs for this, smh

edit: actually... it already exists, oopsie (ᵕ—ᴗ—) smh my head

 

I was trying to analyze my phone's storage through Filelight, but it just gets frozen after I select the phone's folder. I didn't find anything in Bugzilla regarding this problem.
Is the protocol supported at all in the app?

 

I've mostly been using the official F-droid app, but I've become tired of having to click install every single time there's a new update for an app.
On a new phone I tried starting right away with Neo Store, which I know has that functionality, and in fact I haven't had to confirm installation of updates since on there, but on my old devices where I started with F-droid how can I get that to work?
I believe I read somewhere that for this to work, the apps I want to update automatically need to be installed the first time from within the same app and, even then, only some apps that target Android SDKs from a certain point forward support that, so not all can benefit from this feature.
So how can I make this change, do I have to uninstall every application from F-droid I have and reinstall them from Neo Store or is there an easier way?

Edit: One other thing, even in Neo Store it seems I can't update without confirmation if I manually update only one app at a time and instead it works if I let it update everything by having "Auto-update" enabled

 

There's something I don't understand here: why when I do "Open Folder" and then save the session, closing it and opening it again I'm left with nothing?
Instead, if I open some files in subdirectories, the next time I reopen the session I'm just presented with the parent folders of those files, but I really needed to have the topmost directory to be able to access the whole tree structure whenever I reopen the session.

Is it possible? Or do I have to make a project?

 

I've been using Quillnote for a long time now and this is a feature I've been sorely missing, are there other apps that can help me do the conversion?

 

I was thinking, with the recent news of a contributor to GitLab adding support for forge federation, given some time we could see that being enabled in the KDE instance as well, I hope.
So that brings me to a question, if it will be used, will we be able to largely move to reporting and discussing issues on the specific project pages without signing up rather than going to the more generic Bugzilla?
I was really hoping for something like this to happen because I find Bugzilla to be very dispersive and it feels hard to find the issues that you want, unless you remember the syntax needed to filter the results correctly every single time, so much so that I never signed up on there (but maybe I'm just too lazy and I never took the time to actually understand it).
On the other hand I think most other issue trackers integrated in software forges are way more intuitive, as well as having better discoverability, since they're right there by the code base.

If, instead, you won't do it and prefer to keep Bugzilla as the main issue tracking platform, could you tell us why? Is it to keep the developer discussions separate from the user ones so as to keep your GitLab more focused? Or would there be other reasons?

 

In terms of the most balanced in speed, consistency in page rendering and good default settings, is there a clear winner?

Personally I've been using both Dark Reader and Midnight Lizard on different devices and I can't say I noticed much of a difference in terms of performance, what I did notice is that Dark Reader seems to have better defaults, but many complain that it slows down page loading a ton, I haven't heard the same about Midnight Lizard, but maybe that is by virtue that it has way way fewer installations and therefore fewer people talking about it.
Do you know if I've missed one and there is a totally different extension that does even better than both?

 

Reposting this since the original got deleted (except on the instances where it was federated in time) when my beehaw account was erased alongside a week worth of data a few months ago.
Came across the image and thought "why not post again?", I don't know if I still stand by the meme, but frankly I don't care...

I just want to schizopost

⠛⠛⣿⣿⣿⣿⣿⡷⢶⣦⣶⣶⣤⣤⣤⣀⠀⠀⠀
⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡀⠀
⠀⠀⠀⠉⠉⠉⠙⠻⣿⣿⠿⠿⠛⠛⠛⠻⣿⣿⣇⠀
⠀⠀⢤⣀⣀⣀⠀⠀⢸⣷⡄⠀ ⣀⣤⣴⣿⣿⣿⣆
⠀⠀⠀⠀⠹⠏⠀⠀⠀⣿⣧⠀⠹⣿⣿⣿⣿⣿⡿⣿
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠛⠿⠇⢀⣼⣿⣿⠛⢯⡿⡟
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠦⠴⢿⢿⣿⡿⠷⠀⣿⠀
⠀⠀⠀⠀⠀⠀⠀⠙⣷⣶⣶⣤⣤⣤⣤⣤⣶⣦⠃⠀
⠀⠀⠀⠀⠀⠀⠀⢐⣿⣾⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠈⣿⣿⣿⣿⣿⣿⣿⣿⣿⡇⠀⠀
⠀⠀⠀⠀⠀⠀⠀⠀⠀⠙⠻⢿⣿⣿⣿⣿⠟

 

Since Bibliogram is dead, has any new project popped up?
I found imgsed just now, but it doesn't look like it's open source as far as I can tell

 

You may wonder:

It's 32 years old, so why does Tux look like a cub?

To that I say: It's 32 years... young!
Linux has never been more in shape than it is today :)

spoilerYou may title this as "The Curious Case of Benjamin ButTux", ooor not, that sounds suspiciously like "buttocks"


Side note

I wasn't expecting the birthday to come already, but, as it happens, I was working on my Tux design these past few days, so I felt hard pressed to release some celebratory art today when I found out.
You can see the little guy being built right now in my ~~laboratory~~ repository: https://codeberg.org/quazar-omega/tux-reloaded

I'll be posting a proper announcement when I feel like it's ready (if I don't get burned out before that X﹏X )

15
submitted 2 years ago* (last edited 2 years ago) by QuazarOmega@lemy.lol to c/firefox@lemmy.ml
 

Background

I'm using GNOME and it has this problem where it deletes all notifications coming from a single application when they exceed 3, so, without even having many websites that send notifications, I find myself opening the browser, getting a slew of them and most disappear immediately to make way for the others that all come in quick succession, so I don't get the chance to actually read them.
That's especially annoying when I spot a notification, try to dig up where it could have come from and don't manage to find anything, either because the website redacted it or because I misread it at a glance so I'm unable to point to which one it could have been

Actual question

How do we keep in a log all the notifications that are coming through? Preferably not in a way that is dependent on the OS, with Dbus in this case, but all inside Firefox

view more: ‹ prev next ›