Skip Navigation

Search

unixporn @lemmy.world
variety4me @lemmy.zip

colors from wallpaper

term: alacritty with starship (pure) editor: pragtical filemanager: thunar bar: waybar

unixporn @lemmy.world
variety4me @lemmy.zip

someone yesterday asked for workflow video

so here goes nothin!

unixporn @lemmy.world
cm0002 @lemmy.world

feat waybar

OC by @[email protected]

  • wm : niri
  • bar: waybar
  • term: kitty
  • fetch: fastfetch
  • shell: fish
  • font: maple mono
  • color scheme: everforest
Unixporn @lemmy.ml
variety4me @lemmy.zip

feat waybar

  • wm : niri
  • bar: waybar
  • term: kitty
  • fetch: fastfetch
  • shell: fish
  • font: maple mono
  • color scheme: everforest
unixporn @lemmy.world
cm0002 @lemmy.world

the scrolling wm

Unixporn @lemmy.ml
variety4me @lemmy.ml

the scrolling wm

  • wm: niri
  • bar: waybar
  • term: kitty
  • browser: zen
  • music: deadbeef
Linux @lemmy.ml
gramgan @lemmy.ml

What is something you want to use, yet are NOT using?

For me, I really want to get into niri, but the lack of XWayland support scares me (I know there’s solutions, but I don’t understand them yet).

Also, I stopped using Emacs (even though I love its design and philosophy with my whole heart) because it’s very slow, even as a daemon.

unixporn @lemmy.world
Štěpán @lemmy.cafe

I'm starting to like the look

It's very much WIP.

  • Distro: EndeavourOS
  • Compositor/WM: Niri
  • Floating menu in the center: Fuzzel
  • Bar: Waybar
  • Terminal: Foot
  • Terminal multiplexer: Tmux
  • Shell: ZSH
  • Prompt: Powerlevel10k
  • Editor: Neovim
  • Browser: Firefox
  • dotfiles (kinda messy + outdated README)
nixos @lemmy.ml
hallettj @leminal.space

gnome-keyring as ssh agent in lightweight window manager

cross-posted from: https://leminal.space/post/4750886

It took me some time to work out how to get my ssh agent set up in Niri so I though I would share what I did. I'm using NixOS and Home Manager. I put this in my Home Manager config:

 nix
    
services.gnome-keyring = {
  enable = true;
  components = [ "pkcs11" "secrets" "ssh" ];
};
home.sessionVariables.SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/keyring/ssh";

  

I'm using GDM according to NixOS' default configuration which I think runs gnome-keyring (I thought I saw it in the process list before I set up the user unit), and I think that configuration is automatically unlocking gnome-keyring when I log in via PAM integration. But apparently I need to run gnome-keyring again in my window manager session. Home Manager's services.gnome-keyring adds a systemd user unit that does that.

Nix / NixOS @programming.dev
hallettj @leminal.space

gnome-keyring as ssh agent in lightweight window manager

It took me some time to work out how to get my ssh agent set up in Niri so I though I would share what I did. I'm using NixOS and Home Manager. I put this in my Home Manager config:

 nix
    
services.gnome-keyring = {
  enable = true;
  components = [ "pkcs11" "secrets" "ssh" ];
};
home.sessionVariables.SSH_AUTH_SOCK = "$XDG_RUNTIME_DIR/keyring/ssh";

  

I'm using GDM according to NixOS' default configuration which I think runs gnome-keyring (I thought I saw it in the process list before I set up the user unit), and I think that configuration is automatically unlocking gnome-keyring when I log in via PAM integration. But apparently I need to run gnome-keyring again in my window manager session. Home Manager's services.gnome-keyring adds a systemd user unit that does that.