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