7 lines
107 B
Bash
Executable file
7 lines
107 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if command -v lxpolkit >/dev/null; then
|
|
lxpolkit &
|
|
else
|
|
echo "error: lxpolkit not found"
|
|
fi
|