13 lines
304 B
Nix
13 lines
304 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.autorandr = {
|
||
|
enable = true;
|
||
|
hooks.postswitch = {
|
||
|
"change-background" =
|
||
|
"/run/current-system/sw/bin/systemctl --user restart random-background.service";
|
||
|
"restart-xmonad" = "${pkgs.xmonad-with-packages}/bin/xmonad --restart";
|
||
|
};
|
||
|
};
|
||
|
}
|