9 lines
92 B
Bash
Executable File
9 lines
92 B
Bash
Executable File
#!/bin/bash
|
|
|
|
IS_LOCKED=$(ps -e | grep hyprlock)
|
|
|
|
if [ -z "$IS_LOCKED" ]
|
|
then
|
|
hyprlock
|
|
fi
|