Daniel Phan
Daniel Phan
I would love to see #46 get resurrected, and support for other age plugins.
## Firefox Info Firefox Nightly 105.0a1, with default Firefox Sidebar extensions. ## Issues ### Collapsed sidebar tab icon is a rectangle instead of a square  ### Tab container indicator...
## Firefox Info Firefox Nightly 105.0a1, with default Firefox Sidebar extensions. After removing CSD extension, there is still space in top left bar 
I would love to have a right sidebar! By far the cleanest setup with Sideberry that I have tried :rocket:
I have a working example here: - swhkd.service: ``` [Unit] BindsTo=default.target Description=swhkd hotkey daemon [Service] # ExecStart=/path/to/swhkd-start.sh ExecReload=/bin/kill -HUP swhkd Restart=always Type=simple ``` - swhks.service ``` [Unit] Description=swhkd hotkey server...
## Expected Behavior Hyprland is accessible via `inputs.hyprland` ## Current Behavior Hyprland throws an error because digga somehow refer to `inputs.hyprland.overlay` as it was deprecated by Hyprland. ## Possible Solution...
## Expected Behavior Accessing `self.lib` should not throw infinite recursion. ## Current Behavior In `flake.nix`, with ``` lib = import ./lib.nix {lib = digga.lib // nixpkgs.lib;}; home = ./home.nix nixos...
https://github.com/lilydjwg/nvchecker/commit/2de30c0acdbcc2560ee7c9c472df956441cb2bab fixed my issue for https://github.com/lilydjwg/nvchecker/issues/216. Please bump nixpkgs to use nvchecker v2.9
Instead of `^(?!foo$).*$`, I have to use `^(.{0,2}|.{4,}|[^f]..|.[^o].|..[^o])$`. A longer example, like `matklad__rust__analyzer`, it would be ``` ^([^m]|m(m|a(m|t(m|k(m|l(m|a(m|d(m|_(m|_(m|r(m|u(m|s(m|t(m|_(m|_(m|a(m|n(m|a(m|l(m|y(m|z(m|em)))))))))))))))))))))*([^am]|a([^mt]|t([^km]|k([^lm]|l([^am]|a([^dm]|d([^_m]|_([^_m]|_([^mr]|r([^mu]|u([^ms]|s([^mt]|t([^_m]|_([^_m]|_([^am]|a([^mn]|n([^am]|a([^lm]|l([^my]|y([^mz]|z([^em]|e[^mr]))))))))))))))))))))))*(m(m|a(m|t(m|k(m|l(m|a(m|d(m|_(m|_(m|r(m|u(m|s(m|t(m|_(m|_(m|a(m|n(m|a(m|l(m|y(m|z(m|em)))))))))))))))))))))*(a((t(k(l(a(d(_(_(r(u(s(t(_(_(a(n(a(ly?)?)?)?)?)?)?)?)?)?)?)?)?)?)?)?)?)?|tklad__rust__analyze?))?)?$ ```