No description
Find a file
2025-12-26 18:59:06 -05:00
view yeet 2025-12-26 21:28:43 +01:00
.envrc yeet 2025-12-26 21:28:43 +01:00
default.nix Add nix derivation and overlay 2025-12-26 18:58:14 -05:00
package.nix Add nix derivation and overlay 2025-12-26 18:58:14 -05:00
README.md Add readme for nix usage 2025-12-26 18:58:14 -05:00
shell.nix yeet 2025-12-26 21:28:43 +01:00

winxpbg

Windows XP as your desktop background.

This embeds a GTK-based webview to use https://winxp.vercel.app/ as your desktop background.

Only works on Wayland with gtk-layer-shell.

Nix

  1. Import the repo as an overlay:
let
  nixpkgs = import nixpkgs {
    inherit system;
    overlays = [
      (import winxpbg)
    ];
  };
in
...
  1. Launch it with your desktop environment or window manager, for example with Niri:
{
  programs.niri.settings.spawn-at-startup = [
    { command = [ (lib.getExe pkgs.winxpbg) ]; }
  ];
}