Evie Litherland-Smith
be1d5fa798
Save reference for later Enable upower daemon and add simple bar with the essentials for now, TODO more later
9 lines
94 B
Bash
Executable file
9 lines
94 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
LOCK="/tmp/title.lock"
|
|
if [ -f "$LOCK" ]; then
|
|
exit 1
|
|
else
|
|
exit 0
|
|
fi
|