summaryrefslogtreecommitdiffstats
path: root/scripts/lock-screen.nix
blob: f4610f7ae8294f9792f790db6c698bb197b53177 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{pkgs}:
pkgs.writeShellApplication {
  name = "lock-screen";
  runtimeInputs = [pkgs.betterlockscreen];
  text = ''
    if [ ! -f "$HOME/.cache/betterlockscreen/current/lock_dimblur.png" ]; then
    	betterlockscreen -u "$HOME/Wallpapers/Daniel_in_the_Lions_Den_by_Briton_Riviere.jpg" --fx dimblur
    fi

    betterlockscreen -l dimblur
  '';
}