15 lines
514 B
Bash
15 lines
514 B
Bash
#!/usr/bin/env bash
|
|
|
|
# src:https://github.com/veltall/custom-i3lock
|
|
|
|
overlay=/home/${USER}/.local/share/img/archLinux.png
|
|
|
|
gravity=("center" "northwest" "northeast" "southwest" "southeast")
|
|
random_gravity=${gravity[ $RANDOM % ${#gravity[@]} ]}
|
|
|
|
echo "${random_gravity}"
|
|
|
|
#scrot /tmp/currentworkspace.png
|
|
#convert /tmp/currentworkspace.png -blur 0x5 /tmp/currentworkspaceblur.png
|
|
#composite -gravity ${random_gravity} $overlay /tmp/currentworkspaceblur.png /tmp/lockbackground.png
|
|
#i3lock -i /tmp/lockbackground.png |