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