mirror of
https://github.com/Noratrieb/winxpbg.git
synced 2026-03-14 22:46:12 +01:00
557 B
557 B
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
- Import the repo as an overlay:
let
nixpkgs = import nixpkgs {
inherit system;
overlays = [
(import winxpbg)
];
};
in
...
- Launch it with your desktop environment or window manager, for example with Niri:
{
programs.niri.settings.spawn-at-startup = [
{ command = [ (lib.getExe pkgs.winxpbg) ]; }
];
}