fix: hardcoded DPI value in logical_px()

This commit is contained in:
Yohann Leon 2018-12-11 17:41:00 +01:00
parent 9e96fa323f
commit 271bb03368

View file

@ -123,7 +123,7 @@ lockselect() {
logical_px() {
# get dpi value from xrdb
local DPI=$(xrdb -query | awk '/Xft.dpi/ {print $2}')
local SCALE=$(echo "scale=2; 150 / 96.0" | bc)
local SCALE=$(echo "scale=2; $DPI / 96.0" | bc)
# check if scaling the value is worthy
if [ $(echo "$SCALE > 1.25" | bc -l) -eq 0 ]; then