summaryrefslogtreecommitdiffstats
path: root/lock-screen.nix
blob: ca4590342da3fc975f82ac25a2acb7d8ce060d98 (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
    	'';
}