aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hemmelmayr <fips.hem@gmail.com>2019-01-05 18:44:47 +0100
committerGitHub <noreply@github.com>2019-01-05 18:44:47 +0100
commit5a2fbbadddfa5cfe557901efb62385f6c85e270f (patch)
tree25138645a93ad94ecc8cdce30c5b6738cba63030
parente33fc1dacb7b3ed4e84fb007b72ad486f462cc87 (diff)
removed warnings
-rwxr-xr-xbetterlockscreen2
1 files changed, 1 insertions, 1 deletions
diff --git a/betterlockscreen b/betterlockscreen
index 2ef6208..be67bd0 100755
--- a/betterlockscreen
+++ b/betterlockscreen
@@ -125,7 +125,7 @@ logical_px() {
local DPI=$(xrdb -query | awk '/Xft.dpi/ {print $2}')
# return the default value if no DPI is set
- if [ -z "$DPI"]; then
+ if [ -z "$DPI" ]; then
echo $1
else
local SCALE=$(echo "scale=2; $DPI / 96.0" | bc)