mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
Change conditional operator
This commit is contained in:
parent
09352b2f0b
commit
e40eecd9e3
1 changed files with 2 additions and 5 deletions
7
dzgui.sh
7
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=2.8.0-rc.22
|
||||
version=2.8.0-rc.23
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -81,7 +81,7 @@ depcheck(){
|
|||
done
|
||||
}
|
||||
watcher_deps(){
|
||||
if [[ ! $(command -v wmctrl) ]] || [[ ! $(command -v xdotool) ]]; then
|
||||
if [[ ! $(command -v wmctrl) ]] && [[ ! $(command -v xdotool) ]]; then
|
||||
echo "100"
|
||||
warn "Requires wmctrl or xdotool"
|
||||
exit 1
|
||||
|
@ -1591,9 +1591,6 @@ while true; do
|
|||
fi
|
||||
done
|
||||
}
|
||||
#cleanup(){
|
||||
# rm $config_path/.lockfile
|
||||
#}
|
||||
lock(){
|
||||
if [[ ! -f $config_path/.lockfile ]]; then
|
||||
touch $config_path/.lockfile
|
||||
|
|
Loading…
Reference in a new issue