u/JustDesoroxxx

Material You "Minimal" Icons on Pixel Watch?

Hi, does anyone know if there is a way to have Material You "Minimal" Icons on the Pixel Watch 4, like on Pixel Phones? The app drawer feels really busy to me and this would fix it entirely.

reddit.com
u/JustDesoroxxx — 10 days ago

How to set my keyboard to it's US ISO layout?

Hi, for the past few hours I have been trying to set my Razer BlackWidow V4 Pro 75% to its US ISO layout.

Here is a picture from TechRadar: https://cdn.mos.cms.futurecdn.net/Dye5aAqCMybQiVNCpWxn54-1920-80.jpg.webp

I set the xkb layout to us, which nearly works. Except, on my keyboard there is a \/| key between shift and z, which works just fine, but then, between enter and '/" there is the #/~ key, but that one acts just like \/| does.

This is what wev gave me for each key:

  • The #/~: key: serial: 71479; key: 51; state: 1 (pressed) sym: backslash (92), utf8: '\'
  • The \/|: key: serial: 71525; key: 94; state: 1 (pressed) sym: backslash (92), utf8: '\'

I am using NixOS with SwayWM. My current input config for SwayWM (Home Manager module):

input = {
  "*" = {
    xkb_layout =
      if hostname == "Monika"
      then "us"
      else "gb";
    xkb_variant = "altgr-intl";
    xkb_numlock = "enabled";
  };
};

My current input config for everything else (NixOS config):

console.useXkbConfig = true;
  services.xserver.xkb = {
    layout =
      if hostname == "Monika"
      then "us"
      else "gb";
    variant = "altgr-intl";
  };

I am still very new to a lot of this, and so far I was always able to find a solution to everything, but here, no matter where or how I search, I just can't find a solution.

u/JustDesoroxxx — 10 days ago